Browse Source

file_util: Make IOFile data members private

pull/15/merge
Lioncash 10 years ago
parent
commit
3ee4432fe3
  1. 1
      src/common/file_util.h

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

Loading…
Cancel
Save