From 77be6de60ef3aa09c11136bf8392abfd37d9d791 Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Thu, 3 Dec 2009 15:40:50 +0000 Subject: [PATCH] Made traits classes into structs to fix access control errors [SVN r58114] --- include/boost/graph/filtered_graph.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/graph/filtered_graph.hpp b/include/boost/graph/filtered_graph.hpp index 538536d7..4c5f1783 100644 --- a/include/boost/graph/filtered_graph.hpp +++ b/include/boost/graph/filtered_graph.hpp @@ -221,14 +221,14 @@ namespace boost { template - class vertex_property_type > { + struct vertex_property_type > { typedef typename vertex_property_type::type type; }; template - class edge_property_type > { + struct edge_property_type > { typedef typename edge_property_type::type type; };