summaryrefslogtreecommitdiffstats
path: root/src/line_printer.h
diff options
context:
space:
mode:
authorScott Graham <scottmg@chromium.org>2013-04-09 17:03:46 (GMT)
committerScott Graham <scottmg@chromium.org>2013-04-09 17:03:46 (GMT)
commit808aa158be0d422a2ee5366a3f4eda29cd51c39a (patch)
tree1eec01a29e04b7207c40d162e4074feee149a52d /src/line_printer.h
parent3e5dce7ce641c600384268db3feb74cb8aac25b3 (diff)
downloadNinja-808aa158be0d422a2ee5366a3f4eda29cd51c39a.zip
Ninja-808aa158be0d422a2ee5366a3f4eda29cd51c39a.tar.gz
Ninja-808aa158be0d422a2ee5366a3f4eda29cd51c39a.tar.bz2
fix windows build after depslog
Diffstat (limited to 'src/line_printer.h')
-rw-r--r--src/line_printer.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/line_printer.h b/src/line_printer.h
index 78510ea..54620da 100644
--- a/src/line_printer.h
+++ b/src/line_printer.h
@@ -28,9 +28,9 @@ class LinePrinter {
enum LineType {
FULL,
- SHORT
+ ELIDE
};
- /// Overprints the current line. If type is SHORT, elides to_print to fit on
+ /// Overprints the current line. If type is ELIDE, elides to_print to fit on
/// one line.
void Print(std::string to_print, LineType type);
@@ -43,6 +43,8 @@ class LinePrinter {
/// Whether the caret is at the beginning of a blank line.
bool have_blank_line_;
+
+ void* console_;
};
#endif // NINJA_LINE_PRINTER_H_