$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r83893 - trunk/libs/graph/test
From: jewillco_at_[hidden]
Date: 2013-04-13 23:49:56
Author: jewillco
Date: 2013-04-13 23:49:56 EDT (Sat, 13 Apr 2013)
New Revision: 83893
URL: http://svn.boost.org/trac/boost/changeset/83893
Log:
Fixed VC++ error
Text files modified:
trunk/libs/graph/test/mas_test.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/libs/graph/test/mas_test.cpp
==============================================================================
--- trunk/libs/graph/test/mas_test.cpp (original)
+++ trunk/libs/graph/test/mas_test.cpp 2013-04-13 23:49:56 EDT (Sat, 13 Apr 2013)
@@ -210,7 +210,7 @@
std::map<edge_descriptor, weight_type> wm;
weight_type i = 0;
- BGL_FORALL_EDGES_T(e, g, undirected_unweighted_graph) {
+ BGL_FORALL_EDGES(e, g, undirected_unweighted_graph) {
wm[e] = ws[i];
++i;
}