diff options
author | Nico Weber <thakis@chromium.org> | 2014-05-13 19:35:52 (GMT) |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2014-05-13 19:37:31 (GMT) |
commit | 47993664be821df46b009d3e48d251e6266cefc9 (patch) | |
tree | ad5d847c6aa2ff4efc92eec7caad75a9fa300d32 /src/manifest_parser.cc | |
parent | 6c9a54649d4eec45f58e117612a34a2c214a0214 (diff) | |
download | Ninja-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.cc | 4 |
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; } |