Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r53103 - trunk/boost/graph
From: asutton_at_[hidden]
Date: 2009-05-18 20:11:08


Author: asutton
Date: 2009-05-18 20:11:08 EDT (Mon, 18 May 2009)
New Revision: 53103
URL: http://svn.boost.org/trac/boost/changeset/53103

Log:
Fixing bug in labeled graph.

Text files modified:
   trunk/boost/graph/labeled_graph.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/graph/labeled_graph.hpp
==============================================================================
--- trunk/boost/graph/labeled_graph.hpp (original)
+++ trunk/boost/graph/labeled_graph.hpp 2009-05-18 20:11:08 EDT (Mon, 18 May 2009)
@@ -501,7 +501,7 @@
 
     /** 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 */


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