summaryrefslogtreecommitdiffstats
path: root/src/graph.h
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2012-09-02 19:27:46 (GMT)
committerEvan Martin <martine@danga.com>2012-09-02 19:27:46 (GMT)
commit3220e626da48bc0fd69bee5a3dfae3b55bd0b761 (patch)
treea40cf4ad8e33205d13590fd781f88108882925e6 /src/graph.h
parentfd91e0dc26d18209f7625730bb0e653f8321fff9 (diff)
downloadNinja-3220e626da48bc0fd69bee5a3dfae3b55bd0b761.zip
Ninja-3220e626da48bc0fd69bee5a3dfae3b55bd0b761.tar.gz
Ninja-3220e626da48bc0fd69bee5a3dfae3b55bd0b761.tar.bz2
remove a redundant arg to RecomputeOutputDirty
Diffstat (limited to 'src/graph.h')
-rw-r--r--src/graph.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/graph.h b/src/graph.h
index 3e2e57a..ced1f4f 100644
--- a/src/graph.h
+++ b/src/graph.h
@@ -212,8 +212,7 @@ struct DependencyScan {
/// Recompute whether a given single output should be marked dirty.
/// Returns true if so.
- bool RecomputeOutputDirty(Edge* edge, TimeStamp most_recent_input,
- Node* most_recent_node,
+ bool RecomputeOutputDirty(Edge* edge, Node* most_recent_input,
const string& command, Node* output);
bool LoadDepFile(Edge* edge, string* err);