summaryrefslogtreecommitdiffstats
path: root/src/graph.h
diff options
context:
space:
mode:
authorRobert Iannucci <robbie@rail.com>2012-10-03 23:27:27 (GMT)
committerRobert A Iannucci Jr <iannucci@chromium.org>2012-11-09 04:25:39 (GMT)
commitaca4ec54656057e58ca7a9ae5de7f94c869b2ccb (patch)
tree4dc557e0df2399092aa6e782f86dae7aa72895a0 /src/graph.h
parenta4220cdcd298cb43133c241497f2edb9e5cbc8d9 (diff)
downloadNinja-aca4ec54656057e58ca7a9ae5de7f94c869b2ccb.zip
Ninja-aca4ec54656057e58ca7a9ae5de7f94c869b2ccb.tar.gz
Ninja-aca4ec54656057e58ca7a9ae5de7f94c869b2ccb.tar.bz2
stub out an api and de-constify Pool
Diffstat (limited to 'src/graph.h')
-rw-r--r--src/graph.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/graph.h b/src/graph.h
index 272fcb9..a35ab65 100644
--- a/src/graph.h
+++ b/src/graph.h
@@ -138,6 +138,7 @@ struct Rule {
struct BuildLog;
struct Node;
struct State;
+struct Pool;
/// An edge in the dependency graph; links between Nodes using Rules.
struct Edge {
@@ -166,6 +167,7 @@ struct Edge {
void Dump(const char* prefix="") const;
const Rule* rule_;
+ Pool* pool_;
vector<Node*> inputs_;
vector<Node*> outputs_;
Env* env_;