summaryrefslogtreecommitdiffstats
path: root/src/graph.h
diff options
context:
space:
mode:
authorThiago Farina <tfransosi@gmail.com>2011-03-19 21:53:43 (GMT)
committerEvan Martin <martine@danga.com>2011-04-15 19:20:51 (GMT)
commit89a75eff08cd7355f07235938aff4769f97068e5 (patch)
treefff51cd97b561d91ef6a670d21116cd0b03543e9 /src/graph.h
parent343c526e6a0c35816c4876bfc923cef15ef7a989 (diff)
downloadNinja-89a75eff08cd7355f07235938aff4769f97068e5.zip
Ninja-89a75eff08cd7355f07235938aff4769f97068e5.tar.gz
Ninja-89a75eff08cd7355f07235938aff4769f97068e5.tar.bz2
Move CanonicalizePath into util.h so it can be shared by the other modules.
Also add util_test.cc and move the CanonicalizePathTest into there. Signed-off-by: Thiago Farina <tfarina@chromium.org>
Diffstat (limited to 'src/graph.h')
-rw-r--r--src/graph.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/graph.h b/src/graph.h
index ecf9e54..f3cfa97 100644
--- a/src/graph.h
+++ b/src/graph.h
@@ -119,7 +119,4 @@ struct Edge {
bool is_phony() const;
};
-// Exposed for testing.
-bool CanonicalizePath(string* path, string* err);
-
#endif // NINJA_GRAPH_H_