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:
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user