|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r85593 - trunk/boost/graph
From: jewillco_at_[hidden]
Date: 2013-09-07 12:34:49
Author: jewillco
Date: 2013-09-07 12:34:49 EDT (Sat, 07 Sep 2013)
New Revision: 85593
URL: http://svn.boost.org/trac/boost/changeset/85593
Log:
Changed from iterator to const_iterator to fix VC++ issue
Text files modified:
trunk/boost/graph/hawick_circuits.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/graph/hawick_circuits.hpp
==============================================================================
--- trunk/boost/graph/hawick_circuits.hpp Sat Sep 7 08:11:44 2013 (r85592)
+++ trunk/boost/graph/hawick_circuits.hpp 2013-09-07 12:34:49 EDT (Sat, 07 Sep 2013) (r85593)
@@ -110,7 +110,7 @@
typedef typename result_of<
GetAdjacentVertices(Vertex, Graph const&)
>::type AdjacentVertices;
- typedef typename range_iterator<AdjacentVertices>::type AdjacencyIterator;
+ typedef typename range_iterator<AdjacentVertices const>::type AdjacencyIterator;
// The one_bit_color_map starts all white, i.e. not blocked.
// Since we make that assumption (I looked at the implementation, but
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