summaryrefslogtreecommitdiffstats
path: root/src/manifest_parser.cc
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2014-05-13 19:35:52 (GMT)
committerNico Weber <thakis@chromium.org>2014-05-13 19:37:31 (GMT)
commit47993664be821df46b009d3e48d251e6266cefc9 (patch)
treead5d847c6aa2ff4efc92eec7caad75a9fa300d32 /src/manifest_parser.cc
parent6c9a54649d4eec45f58e117612a34a2c214a0214 (diff)
downloadNinja-47993664be821df46b009d3e48d251e6266cefc9.zip
Ninja-47993664be821df46b009d3e48d251e6266cefc9.tar.gz
Ninja-47993664be821df46b009d3e48d251e6266cefc9.tar.bz2
wip for console pool on windows
Diffstat (limited to 'src/manifest_parser.cc')
-rw-r--r--src/manifest_parser.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/manifest_parser.cc b/src/manifest_parser.cc
index a566eda..6fa4f7c 100644
--- a/src/manifest_parser.cc
+++ b/src/manifest_parser.cc
@@ -317,10 +317,6 @@ bool ManifestParser::ParseEdge(string* err) {
Pool* pool = state_->LookupPool(pool_name);
if (pool == NULL)
return lexer_.Error("unknown pool name '" + pool_name + "'", err);
-#ifdef _WIN32
- if (pool == &State::kConsolePool)
- return lexer_.Error("console pool unsupported on Windows", err);
-#endif
edge->pool_ = pool;
}