Skip to content
Snippets Groups Projects
Commit 3ee4432f authored by Lioncash's avatar Lioncash
Browse files

file_util: Make IOFile data members private

parent db0db6a1
No related branches found
No related tags found
No related merge requests found
...@@ -260,6 +260,7 @@ public: ...@@ -260,6 +260,7 @@ public:
// clear error state // clear error state
void Clear() { m_good = true; std::clearerr(m_file); } void Clear() { m_good = true; std::clearerr(m_file); }
private:
std::FILE* m_file; std::FILE* m_file;
bool m_good; bool m_good;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment