summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/file_util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/file_util.h b/src/common/file_util.h
index 880b8a1e3..80e618aca 100644
--- a/src/common/file_util.h
+++ b/src/common/file_util.h
@@ -260,6 +260,7 @@ public:
260 // clear error state 260 // clear error state
261 void Clear() { m_good = true; std::clearerr(m_file); } 261 void Clear() { m_good = true; std::clearerr(m_file); }
262 262
263private:
263 std::FILE* m_file; 264 std::FILE* m_file;
264 bool m_good; 265 bool m_good;
265}; 266};