diff options
Diffstat (limited to 'src/state.cc')
-rw-r--r-- | src/state.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/state.cc b/src/state.cc index 238674e..7e3aae8 100644 --- a/src/state.cc +++ b/src/state.cc @@ -47,16 +47,16 @@ Edge* State::AddEdge(const Rule* rule) { return edge; } -Node* State::GetNode(const string& path) { +Node* State::GetNode(StringPiece path) { Node* node = LookupNode(path); if (node) return node; - node = new Node(path); + node = new Node(path.AsString()); paths_[node->path()] = node; return node; } -Node* State::LookupNode(const string& path) { +Node* State::LookupNode(StringPiece path) { Paths::iterator i = paths_.find(path); if (i != paths_.end()) return i->second; |