summaryrefslogtreecommitdiffstats
path: root/src/line_printer.cc
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2013-04-18 18:27:20 (GMT)
committerEvan Martin <martine@danga.com>2013-04-18 18:27:24 (GMT)
commit9b6b1fd44a589c3725947280ff5a2ce8fc50a387 (patch)
tree23b40282376cbc820525d951d7f33de795daa7fa /src/line_printer.cc
parent877fdb50d1599ed9a0d2035a95c5a5b811be20ee (diff)
downloadNinja-9b6b1fd44a589c3725947280ff5a2ce8fc50a387.zip
Ninja-9b6b1fd44a589c3725947280ff5a2ce8fc50a387.tar.gz
Ninja-9b6b1fd44a589c3725947280ff5a2ce8fc50a387.tar.bz2
drop std:: qualifiers on more stl datatypes
We "using namespace std" anywhere we need a std::string or a std::vector.
Diffstat (limited to 'src/line_printer.cc')
-rw-r--r--src/line_printer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/line_printer.cc b/src/line_printer.cc
index 751fb07..a75eb05 100644
--- a/src/line_printer.cc
+++ b/src/line_printer.cc
@@ -42,7 +42,7 @@ LinePrinter::LinePrinter() : have_blank_line_(true) {
#endif
}
-void LinePrinter::Print(std::string to_print, LineType type) {
+void LinePrinter::Print(string to_print, LineType type) {
#ifdef _WIN32
CONSOLE_SCREEN_BUFFER_INFO csbi;
GetConsoleScreenBufferInfo(console_, &csbi);