summaryrefslogtreecommitdiffstats
path: root/src/build.h
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2012-12-30 18:15:49 (GMT)
committerEvan Martin <martine@danga.com>2013-04-08 21:45:07 (GMT)
commit70fd0f590c3a46a4a9ff9a160f455c5c30f5b90a (patch)
tree6c0da3bb1ea04f301a62005a47997f013346536b /src/build.h
parent6e21a236edd859b885f8c1bea8090bbdd76bf15d (diff)
downloadNinja-70fd0f590c3a46a4a9ff9a160f455c5c30f5b90a.zip
Ninja-70fd0f590c3a46a4a9ff9a160f455c5c30f5b90a.tar.gz
Ninja-70fd0f590c3a46a4a9ff9a160f455c5c30f5b90a.tar.bz2
plumb DepsLog load through Builder
Diffstat (limited to 'src/build.h')
-rw-r--r--src/build.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/build.h b/src/build.h
index fa73620..36bca57 100644
--- a/src/build.h
+++ b/src/build.h
@@ -140,7 +140,8 @@ struct BuildConfig {
/// Builder wraps the build process: starting commands, updating status.
struct Builder {
Builder(State* state, const BuildConfig& config,
- BuildLog* log, DiskInterface* disk_interface);
+ BuildLog* build_log, DepsLog* deps_log,
+ DiskInterface* disk_interface);
~Builder();
/// Clean up after interrupted commands by deleting output files.