summaryrefslogtreecommitdiffstats
path: root/src/build.h
diff options
context:
space:
mode:
authorScott Graham <scottmg@chromium.org>2015-04-27 18:12:43 (GMT)
committerScott Graham <scottmg@chromium.org>2015-04-27 18:12:45 (GMT)
commitbf2f4b7356c8ea918718651bae586149ab97ebee (patch)
tree10fd1af3827d3ac80803af72829af24a492a0f88 /src/build.h
parent4c4887d26011225deaa20b6752193be0293624ab (diff)
downloadNinja-bf2f4b7356c8ea918718651bae586149ab97ebee.zip
Ninja-bf2f4b7356c8ea918718651bae586149ab97ebee.tar.gz
Ninja-bf2f4b7356c8ea918718651bae586149ab97ebee.tar.bz2
simplify & inline
Diffstat (limited to 'src/build.h')
-rw-r--r--src/build.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/build.h b/src/build.h
index 6eabae5..8106faa 100644
--- a/src/build.h
+++ b/src/build.h
@@ -58,7 +58,7 @@ struct Plan {
/// Mark an edge as done building. Used internally and by
/// tests.
- void EdgeFinished(Edge* edge, bool directly_wanted = true);
+ void EdgeFinished(Edge* edge);
/// Clean the given node during the build.
/// Return false on error.
@@ -78,11 +78,6 @@ private:
/// currently-full pool.
void ScheduleWork(Edge* edge);
- /// Allows jobs blocking on |edge| to potentially resume.
- /// For example, if |edge| is a member of a pool, calling this may schedule
- /// previously pending jobs in that pool.
- void ResumeDelayedJobs(Edge* edge);
-
/// Keep track of which edges we want to build in this plan. If this map does
/// not contain an entry for an edge, we do not want to build the entry or its
/// dependents. If an entry maps to false, we do not want to build it, but we