summaryrefslogtreecommitdiffstats
path: root/src/depfile_parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/depfile_parser.h')
-rw-r--r--src/depfile_parser.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/depfile_parser.h b/src/depfile_parser.h
index 11b1228..0e8db81 100644
--- a/src/depfile_parser.h
+++ b/src/depfile_parser.h
@@ -17,7 +17,6 @@
#include <string>
#include <vector>
-using namespace std;
#include "string_piece.h"
@@ -33,10 +32,10 @@ struct DepfileParser {
/// Parse an input file. Input must be NUL-terminated.
/// Warning: may mutate the content in-place and parsed StringPieces are
/// pointers within it.
- bool Parse(string* content, string* err);
+ bool Parse(std::string* content, std::string* err);
std::vector<StringPiece> outs_;
- vector<StringPiece> ins_;
+ std::vector<StringPiece> ins_;
DepfileParserOptions options_;
};