Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r61824 - trunk/boost/graph
From: jewillco_at_[hidden]
Date: 2010-05-06 12:58:20


Author: jewillco
Date: 2010-05-06 12:58:19 EDT (Thu, 06 May 2010)
New Revision: 61824
URL: http://svn.boost.org/trac/boost/changeset/61824

Log:
Applied patch from #4197 to fix copy constructor; fixes #4197
Text files modified:
   trunk/boost/graph/undirected_graph.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/graph/undirected_graph.hpp
==============================================================================
--- trunk/boost/graph/undirected_graph.hpp (original)
+++ trunk/boost/graph/undirected_graph.hpp 2010-05-06 12:58:19 EDT (Thu, 06 May 2010)
@@ -94,7 +94,7 @@
     { }
 
     inline undirected_graph(undirected_graph const& x)
- : m_graph(x), m_num_vertices(x.m_num_vertices), m_num_edges(x.m_num_edges)
+ : m_graph(x.m_graph), m_num_vertices(x.m_num_vertices), m_num_edges(x.m_num_edges)
         , m_max_vertex_index(x.m_max_vertex_index), m_max_edge_index(x.m_max_edge_index)
     { }
 


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