From a1d00ed07bf26e19b75d7a930f2147eb727589f7 Mon Sep 17 00:00:00 2001 From: Andrew Sutton Date: Tue, 19 May 2009 00:11:08 +0000 Subject: [PATCH] Fixing bug in labeled graph. [SVN r53103] --- include/boost/graph/labeled_graph.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/graph/labeled_graph.hpp b/include/boost/graph/labeled_graph.hpp index 94cae6e9..349bb81a 100644 --- a/include/boost/graph/labeled_graph.hpp +++ b/include/boost/graph/labeled_graph.hpp @@ -501,7 +501,7 @@ public: /** Return a descriptor for the given label. */ vertex_descriptor vertex(Label const& l) const - { return graph_detail::find_labeled_vertex(_map, _graph, l); } + { return graph_detail::find_labeled_vertex(_map, *_graph, l); } #ifndef BOOST_GRAPH_NO_BUNDLED_PROPERTIES /** @name Bundled Properties */