summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar Lioncash2016-04-13 19:10:54 -0400
committerGravatar Lioncash2016-04-13 19:10:54 -0400
commit3ee4432fe391282ac2a5ab5492ff915b0c2adf28 (patch)
tree91ba311fe8c2a7ead84bace331eddf124359db98 /src/common
parentMerge pull request #1660 from MerryMage/file_util (diff)
downloadyuzu-3ee4432fe391282ac2a5ab5492ff915b0c2adf28.tar.gz
yuzu-3ee4432fe391282ac2a5ab5492ff915b0c2adf28.tar.xz
yuzu-3ee4432fe391282ac2a5ab5492ff915b0c2adf28.zip
file_util: Make IOFile data members private
Diffstat (limited to 'src/common')
-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};