2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-01 08:32:11 +00:00

Fixing bug in labeled graph.

[SVN r53103]
This commit is contained in:
Andrew Sutton
2009-05-19 00:11:08 +00:00
parent c4167010e3
commit a1d00ed07b

View File

@@ -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 */