From edc255c6909330b7ee007a645e5806d13e263046 Mon Sep 17 00:00:00 2001 From: Nicolas Despres Date: Tue, 3 Jan 2012 14:51:17 +0100 Subject: [PATCH] Fix warning about class previously declared as struct. Reported by clang++. --- src/graph.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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_; -- 2.7.4