diff options
author | Lioncash <mathew1800@gmail.com> | 2016-04-14 01:10:54 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2016-04-14 01:10:54 +0200 |
commit | 3ee4432fe391282ac2a5ab5492ff915b0c2adf28 (patch) | |
tree | 91ba311fe8c2a7ead84bace331eddf124359db98 /src | |
parent | Merge pull request #1660 from MerryMage/file_util (diff) | |
download | yuzu-3ee4432fe391282ac2a5ab5492ff915b0c2adf28.tar yuzu-3ee4432fe391282ac2a5ab5492ff915b0c2adf28.tar.gz yuzu-3ee4432fe391282ac2a5ab5492ff915b0c2adf28.tar.bz2 yuzu-3ee4432fe391282ac2a5ab5492ff915b0c2adf28.tar.lz yuzu-3ee4432fe391282ac2a5ab5492ff915b0c2adf28.tar.xz yuzu-3ee4432fe391282ac2a5ab5492ff915b0c2adf28.tar.zst yuzu-3ee4432fe391282ac2a5ab5492ff915b0c2adf28.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/file_util.h | 1 |
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: // clear error state void Clear() { m_good = true; std::clearerr(m_file); } +private: std::FILE* m_file; bool m_good; }; |