2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-27 17:12:11 +00:00

Fixed issues with property map types in reverse_graph; fixes #447

[SVN r57909]
This commit is contained in:
Jeremiah Willcock
2009-11-24 21:26:06 +00:00
parent 616543e629
commit 08d4597f35

View File

@@ -282,14 +282,14 @@ struct edge_property_selector<reverse_graph_tag> {
};
template <class BidirGraph, class GRef, class Property>
typename property_map<BidirGraph, Property>::type
typename property_map<reverse_graph<BidirGraph,GRef>, Property>::type
get(Property p, reverse_graph<BidirGraph,GRef>& g)
{
return get(p, g.m_g);
}
template <class BidirGraph, class GRef, class Property>
typename property_map<BidirGraph, Property>::const_type
typename property_map<reverse_graph<BidirGraph,GRef>, Property>::const_type
get(Property p, const reverse_graph<BidirGraph,GRef>& g)
{
const BidirGraph& gref = g.m_g; // in case GRef is non-const