summaryrefslogtreecommitdiffstats
path: root/src/graph.h
diff options
context:
space:
mode:
authorNicolas Despres <nicolas.despres@gmail.com>2012-01-03 13:51:17 (GMT)
committerNicolas Despres <nicolas.despres@gmail.com>2012-01-03 13:51:17 (GMT)
commitedc255c6909330b7ee007a645e5806d13e263046 (patch)
tree16a9dff4315a6c958ca9042f64b4a12e429b7169 /src/graph.h
parentbc3eb871320566f6a22e07e85c96e03e68f8918b (diff)
downloadNinja-edc255c6909330b7ee007a645e5806d13e263046.zip
Ninja-edc255c6909330b7ee007a645e5806d13e263046.tar.gz
Ninja-edc255c6909330b7ee007a645e5806d13e263046.tar.bz2
Fix warning about class previously declared as struct.
Reported by clang++.
Diffstat (limited to 'src/graph.h')
-rw-r--r--src/graph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graph.h b/src/graph.h
index 20765a3..0514c0c 100644
--- a/src/graph.h
+++ b/src/graph.h
@@ -112,7 +112,7 @@ struct Rule {
// TODO: private:
// Allow the parsers to reach into this object and fill out its fields.
- friend class ManifestParser;
+ friend struct ManifestParser;
string name_;