file_util: Make IOFile data members private

master
Lioncash 2016-04-13 19:10:54 +07:00
parent db0db6a182
commit 3ee4432fe3
1 changed files with 1 additions and 0 deletions

@ -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;
};