Make io_file_t members const

This commit is contained in:
Cheer Xiao 2013-02-04 20:15:32 +08:00 committed by ridiculousfish
parent 6527a48897
commit 66a445f043

2
io.h
View File

@ -73,7 +73,7 @@ public:
/** Filename, malloc'd. This needs to be used after fork, so don't use wcstring here. */
const char * const filename_cstr;
/** file creation flags to send to open */
int flags;
const int flags;
virtual void print() const;