file_util: Make IOFile data members private

This commit is contained in:
Lioncash 2016-04-13 19:10:54 -04:00
parent 191c54393a
commit d1778d9220

View file

@ -260,6 +260,7 @@ public:
// clear error state
void Clear() { m_good = true; std::clearerr(m_file); }
private:
std::FILE* m_file;
bool m_good;
};