summaryrefslogtreecommitdiffstats
path: root/src/graphviz.h
diff options
context:
space:
mode:
authorScott Graham <scottmg@chromium.org>2015-08-10 04:25:09 (GMT)
committerScott Graham <scottmg@chromium.org>2015-08-10 04:25:09 (GMT)
commita6265082f4d5e2ca08284117ae1a8f037379f5bf (patch)
tree35ef5a34d25d56d2fa5d77a1617ffde8191aadce /src/graphviz.h
parenta4327b9fb07f1ea678e92c1f06aeb22c129827e2 (diff)
downloadNinja-a6265082f4d5e2ca08284117ae1a8f037379f5bf.zip
Ninja-a6265082f4d5e2ca08284117ae1a8f037379f5bf.tar.gz
Ninja-a6265082f4d5e2ca08284117ae1a8f037379f5bf.tar.bz2
Some mucking with std:: for set_terminate and terminate_handler
Diffstat (limited to 'src/graphviz.h')
-rw-r--r--src/graphviz.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/graphviz.h b/src/graphviz.h
index 1e2a29d..408496d 100644
--- a/src/graphviz.h
+++ b/src/graphviz.h
@@ -16,7 +16,6 @@
#define NINJA_GRAPHVIZ_H_
#include <set>
-using namespace std;
struct Node;
struct Edge;
@@ -27,8 +26,8 @@ struct GraphViz {
void AddTarget(Node* node);
void Finish();
- set<Node*> visited_nodes_;
- set<Edge*> visited_edges_;
+ std::set<Node*> visited_nodes_;
+ std::set<Edge*> visited_edges_;
};
#endif // NINJA_GRAPHVIZ_H_