summaryrefslogtreecommitdiffstats
path: root/src/state.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/state.cc')
-rw-r--r--src/state.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/state.cc b/src/state.cc
index 7d1d79d..6e3e10d 100644
--- a/src/state.cc
+++ b/src/state.cc
@@ -111,13 +111,6 @@ Edge* State::AddEdge(const Rule* rule) {
return edge;
}
-Node* State::GetNode(StringPiece path) {
-#if defined(_WIN32) && !defined(NDEBUG)
- assert(strpbrk(path.AsString().c_str(), "/\\") == NULL);
-#endif
- return GetNode(path, 0);
-}
-
Node* State::GetNode(StringPiece path, unsigned int slash_bits) {
Node* node = LookupNode(path);
if (node)