summaryrefslogtreecommitdiffstats
path: root/src/build.h
diff options
context:
space:
mode:
authorPeter Bell <peterbell10@live.co.uk>2021-08-25 11:11:04 (GMT)
committerPeter Bell <peterbell10@live.co.uk>2021-08-25 11:24:37 (GMT)
commit12b5b7cd535f218895433c4ba10f6556bd44ac42 (patch)
tree9e1d7fc60b58739cf5b237bf469080d0387325d8 /src/build.h
parent4af9fc5c51040944178b112e6defda8473d40105 (diff)
downloadNinja-12b5b7cd535f218895433c4ba10f6556bd44ac42.zip
Ninja-12b5b7cd535f218895433c4ba10f6556bd44ac42.tar.gz
Ninja-12b5b7cd535f218895433c4ba10f6556bd44ac42.tar.bz2
Use explicit std:: style and remove debug print statements
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_;