summaryrefslogtreecommitdiffstats
path: root/src/build.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/build.h')
-rw-r--r--src/build.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build.h b/src/build.h
index 11c87da..5ee5650 100644
--- a/src/build.h
+++ b/src/build.h
@@ -125,8 +125,8 @@ private:
Builder* builder_;
/// user provided targets in build order, earlier one have higher priority
- vector<Node*> targets_;
- list<Edge*> priority_list_;
+ std::vector<const Node*> targets_;
+ std::list<Edge*> priority_list_;
/// Total number of edges that have commands (not phony).
int command_edges_;