summaryrefslogtreecommitdiffstats
path: root/src/build_log.h
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2011-12-22 01:13:25 (GMT)
committerEvan Martin <martine@danga.com>2011-12-22 01:39:47 (GMT)
commitec65275c2613b01115ab4a5c07408e3e53ce7a6e (patch)
tree25a33c419e4d135d05c76d068087234c936ae33f /src/build_log.h
parent08d0f277b9a8957440eddb31bbba9cfc09cc833f (diff)
downloadNinja-ec65275c2613b01115ab4a5c07408e3e53ce7a6e.zip
Ninja-ec65275c2613b01115ab4a5c07408e3e53ce7a6e.tar.gz
Ninja-ec65275c2613b01115ab4a5c07408e3e53ce7a6e.tar.bz2
revert part of c33b198 to fix build of ninja_test
Diffstat (limited to 'src/build_log.h')
-rw-r--r--src/build_log.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/build_log.h b/src/build_log.h
index ee63ed2..51cbe5e 100644
--- a/src/build_log.h
+++ b/src/build_log.h
@@ -69,9 +69,10 @@ struct BuildLog {
/// Rewrite the known log entries, throwing away old data.
bool Recompact(const string& path, string* err);
- private:
+ // TODO: make these private.
typedef ExternalStringHashMap<LogEntry*>::Type Log;
Log log_;
+private:
FILE* log_file_;
BuildConfig* config_;
bool needs_recompaction_;