Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r61793 - trunk/libs/graph/example
From: jewillco_at_[hidden]
Date: 2010-05-05 14:28:39


Author: jewillco
Date: 2010-05-05 14:28:39 EDT (Wed, 05 May 2010)
New Revision: 61793
URL: http://svn.boost.org/trac/boost/changeset/61793

Log:
Patched unqualified calls to tie() using patch in #4190; fixes #4190
Text files modified:
   trunk/libs/graph/example/helper.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/libs/graph/example/helper.hpp
==============================================================================
--- trunk/libs/graph/example/helper.hpp (original)
+++ trunk/libs/graph/example/helper.hpp 2010-05-05 14:28:39 EDT (Wed, 05 May 2010)
@@ -24,7 +24,7 @@
     Vertex v;
     Iterator iter;
     bool inserted;
- tie(iter, inserted) = vm.insert(make_pair(name, Vertex()));
+ boost::tie(iter, inserted) = vm.insert(make_pair(name, Vertex()));
     if(inserted) {
         // The name was unique so we need to add a vertex to the graph
         v = add_vertex(g);


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