Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r63405 - trunk/boost/graph
From: jewillco_at_[hidden]
Date: 2010-06-28 09:21:10


Author: jewillco
Date: 2010-06-28 09:21:08 EDT (Mon, 28 Jun 2010)
New Revision: 63405
URL: http://svn.boost.org/trac/boost/changeset/63405

Log:
Applied patch from #4384; fixes #4384
Text files modified:
   trunk/boost/graph/labeled_graph.hpp | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: trunk/boost/graph/labeled_graph.hpp
==============================================================================
--- trunk/boost/graph/labeled_graph.hpp (original)
+++ trunk/boost/graph/labeled_graph.hpp 2010-06-28 09:21:08 EDT (Mon, 28 Jun 2010)
@@ -694,19 +694,19 @@
 template <LABELED_GRAPH_PARAMS, typename Prop>
 inline typename property_map<LABELED_GRAPH, Prop>::const_type
 get(Prop p, LABELED_GRAPH const& g)
-{ return get(p, g.impl()); }
+{ return get(p, g.graph()); }
 
 template <LABELED_GRAPH_PARAMS, typename Prop, typename Key>
 inline typename property_traits<
     typename property_map<typename LABELED_GRAPH::graph_type, Prop>::const_type
>::value_type
 get(Prop p, LABELED_GRAPH const& g, const Key& k)
-{ return get(p, g.impl(), k); }
+{ return get(p, g.graph(), k); }
 
 template <LABELED_GRAPH_PARAMS, typename Prop, typename Key, typename Value>
 inline void
 put(Prop p, LABELED_GRAPH& g, Key const& k, Value const& v)
-{ put(p, g.impl(), k, v); }
+{ put(p, g.graph(), k, v); }
 //@}
 
 /** @name Mutable Graph */


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk