summaryrefslogtreecommitdiffstats
path: root/src/build.h
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2013-04-09 04:43:49 (GMT)
committerEvan Martin <martine@danga.com>2013-04-09 04:48:10 (GMT)
commit0a2fc151976277d8c0319cdc4ee3b1932b673d91 (patch)
tree81c2f0d5319397870c1cd70e95051487b67d58d7 /src/build.h
parentc78e1eea9a385340a1d47d5402f5a7c41f99c95d (diff)
downloadNinja-0a2fc151976277d8c0319cdc4ee3b1932b673d91.zip
Ninja-0a2fc151976277d8c0319cdc4ee3b1932b673d91.tar.gz
Ninja-0a2fc151976277d8c0319cdc4ee3b1932b673d91.tar.bz2
add a straightforward deps log test, fix the other one
The first test I wrote was wrong; write a simpler test that exercises the "no failures" code paths, then fix the second test and the bugs it exposed.
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 fb5fd10..d5f01cd 100644
--- a/src/build.h
+++ b/src/build.h
@@ -177,7 +177,8 @@ struct Builder {
private:
bool ExtractDeps(CommandRunner::Result* result, const string& deps_type,
- vector<Node*>* deps_nodes, string* err);
+ vector<Node*>* deps_nodes, TimeStamp* deps_mtime,
+ string* err);
DiskInterface* disk_interface_;
DependencyScan scan_;