$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r58114 - trunk/boost/graph
From: jewillco_at_[hidden]
Date: 2009-12-03 10:40:51
Author: jewillco
Date: 2009-12-03 10:40:50 EST (Thu, 03 Dec 2009)
New Revision: 58114
URL: http://svn.boost.org/trac/boost/changeset/58114
Log:
Made traits classes into structs to fix access control errors
Text files modified: 
   trunk/boost/graph/filtered_graph.hpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/graph/filtered_graph.hpp
==============================================================================
--- trunk/boost/graph/filtered_graph.hpp	(original)
+++ trunk/boost/graph/filtered_graph.hpp	2009-12-03 10:40:50 EST (Thu, 03 Dec 2009)
@@ -221,14 +221,14 @@
   template <typename Graph, 
             typename EdgePredicate,
             typename VertexPredicate>
-  class vertex_property_type<filtered_graph<Graph, EdgePredicate, VertexPredicate> > {
+  struct vertex_property_type<filtered_graph<Graph, EdgePredicate, VertexPredicate> > {
     typedef typename vertex_property_type<Graph>::type type;
   };
 
   template <typename Graph, 
             typename EdgePredicate,
             typename VertexPredicate>
-  class edge_property_type<filtered_graph<Graph, EdgePredicate, VertexPredicate> > {
+  struct edge_property_type<filtered_graph<Graph, EdgePredicate, VertexPredicate> > {
     typedef typename edge_property_type<Graph>::type type;
   };