From c541e1099edd1dad921d2f3937fafa602186c0a2 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 4 Jan 2017 17:48:44 -0500 Subject: [PATCH] IOFile: Make class variables private Internals shouldn't be directly exposed. --- Source/Core/Common/FileUtil.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/Common/FileUtil.h b/Source/Core/Common/FileUtil.h index 763da70404..c8524254c2 100644 --- a/Source/Core/Common/FileUtil.h +++ b/Source/Core/Common/FileUtil.h @@ -230,6 +230,7 @@ public: std::clearerr(m_file); } +private: std::FILE* m_file; bool m_good; };