$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r77529 - trunk/libs/graph/test
From: jewillco_at_[hidden]
Date: 2012-03-25 01:00:06
Author: jewillco
Date: 2012-03-25 01:00:05 EDT (Sun, 25 Mar 2012)
New Revision: 77529
URL: http://svn.boost.org/trac/boost/changeset/77529
Log:
Fixed property map access
Text files modified:
trunk/libs/graph/test/subgraph_bundled.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/libs/graph/test/subgraph_bundled.cpp
==============================================================================
--- trunk/libs/graph/test/subgraph_bundled.cpp (original)
+++ trunk/libs/graph/test/subgraph_bundled.cpp 2012-03-25 01:00:05 EDT (Sun, 25 Mar 2012)
@@ -127,7 +127,7 @@
graph_traits<Graph>::edge_iterator ei, ee;
for (boost::tie(ei, ee) = edges(sub); ei != ee; ++ei) {
// This used to segfault.
- get(edge_weight, sub, *ei);
+ get(&arc::weight, sub, *ei);
}
}