From 3ee4432fe391282ac2a5ab5492ff915b0c2adf28 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 13 Apr 2016 19:10:54 -0400 Subject: file_util: Make IOFile data members private --- src/common/file_util.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/common/file_util.h') 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: // clear error state void Clear() { m_good = true; std::clearerr(m_file); } +private: std::FILE* m_file; bool m_good; }; -- cgit v1.2.3