2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-30 20:02:12 +00:00

Made traits classes into structs to fix access control errors

[SVN r58114]
This commit is contained in:
Jeremiah Willcock
2009-12-03 15:40:50 +00:00
parent 744a588308
commit 77be6de60e

View File

@@ -221,14 +221,14 @@ namespace boost {
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;
};