summaryrefslogtreecommitdiffstats
path: root/src/graph.h
diff options
context:
space:
mode:
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_;