瀏覽代碼

file_util: Make IOFile data members private

Lioncash 10 年之前
父節點
當前提交
3ee4432fe3
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/common/file_util.h

+ 1 - 0
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;
 };