diff options
author | Michael Jones <jonesmz@jonesmz.com> | 2020-06-06 22:23:54 (GMT) |
---|---|---|
committer | Michael Jones <jonesmz@jonesmz.com> | 2020-09-30 16:19:09 (GMT) |
commit | ff4f2a0db21b738bba743ad543d8553417aca7b0 (patch) | |
tree | d7892e766cd2c41e5b57ad036c1ef9a5cbdc86bb /src/state.cc | |
parent | 54959b0f2c4950d97d94c03810b3b5185be0d69e (diff) | |
download | Ninja-ff4f2a0db21b738bba743ad543d8553417aca7b0.zip Ninja-ff4f2a0db21b738bba743ad543d8553417aca7b0.tar.gz Ninja-ff4f2a0db21b738bba743ad543d8553417aca7b0.tar.bz2 |
Add 'using namespace std;' to all cc files to prepare for removing it from header files
Diffstat (limited to 'src/state.cc')
-rw-r--r-- | src/state.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/state.cc b/src/state.cc index 74cf4c1..d3a9e29 100644 --- a/src/state.cc +++ b/src/state.cc @@ -22,6 +22,7 @@ #include "metrics.h" #include "util.h" +using namespace std; void Pool::EdgeScheduled(const Edge& edge) { if (depth_ != 0) |