Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r85583 - trunk/libs/graph/test
From: jewillco_at_[hidden]
Date: 2013-09-05 23:54:57


Author: jewillco
Date: 2013-09-05 23:54:57 EDT (Thu, 05 Sep 2013)
New Revision: 85583
URL: http://svn.boost.org/trac/boost/changeset/85583

Log:
Fixed ambiguous call

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

Modified: trunk/libs/graph/test/cycle_test.hpp
==============================================================================
--- trunk/libs/graph/test/cycle_test.hpp Thu Sep 5 16:06:52 2013 (r85582)
+++ trunk/libs/graph/test/cycle_test.hpp 2013-09-05 23:54:57 EDT (Thu, 05 Sep 2013) (r85583)
@@ -38,7 +38,7 @@
             // that the paths are valid.
             typename Path::const_iterator i, j, last = prior(p.end());
             for (i = p.begin(); i != last; ++i) {
- j = next(i);
+ j = boost::next(i);
                 BOOST_ASSERT(edge(*i, *j, g).second);
             }
             BOOST_ASSERT(edge(p.back(), p.front(), g).second);


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