Explorar el Código

file_util: Make IOFile data members private

Lioncash hace 10 años
padre
commit
3ee4432fe3
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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;
 };