$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r86515 - trunk/boost/graph/distributed
From: jewillco_at_[hidden]
Date: 2013-10-29 12:48:05
Author: jewillco
Date: 2013-10-29 12:48:05 EDT (Tue, 29 Oct 2013)
New Revision: 86515
URL: http://svn.boost.org/trac/boost/changeset/86515
Log:
Applied patch from #9127 to fix lazy_add_vertex; fixes #9127
Text files modified:
trunk/boost/graph/distributed/named_graph.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/graph/distributed/named_graph.hpp
==============================================================================
--- trunk/boost/graph/distributed/named_graph.hpp Tue Oct 29 09:15:03 2013 (r86514)
+++ trunk/boost/graph/distributed/named_graph.hpp 2013-10-29 12:48:05 EDT (Tue, 29 Oct 2013) (r86515)
@@ -344,7 +344,7 @@
/// Transfer responsibility for adding the vertex from the source of
/// the copy to the newly-constructed opbject.
lazy_add_vertex(const lazy_add_vertex& other)
- : self(self), name(other.name), committed(other.committed)
+ : self(other.self), name(other.name), committed(other.committed)
{
other.committed = true;
}