--- labeled_graph.hpp.orig 2010-06-24 23:53:26.000000000 +0300 +++ labeled_graph.hpp 2010-06-28 12:45:08.000000000 +0300 @@ -694,19 +694,19 @@ get(Prop p, LABELED_GRAPH& g) template inline typename property_map::const_type get(Prop p, LABELED_GRAPH const& g) -{ return get(p, g.impl()); } +{ return get(p, g.graph()); } template inline typename property_traits< typename property_map::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 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 */