Ticket #10449: directed_graph_copy_ctor.patch

File directed_graph_copy_ctor.patch, 540 bytes (added by philip.pfaffe@…, 8 years ago)
  • boost/graph/directed_graph.hpp

    diff --git a/boost/graph/directed_graph.hpp b/boost/graph/directed_graph.hpp
    index 2c56a4e..b86d87c 100644
    a b public:  
    9292    { }
    9393
    9494    directed_graph(directed_graph const& x)
    95         : m_graph(x), m_num_vertices(x.m_num_vertices), m_num_edges(x.m_num_edges)
     95        : m_graph(x.m_graph), m_num_vertices(x.m_num_vertices), m_num_edges(x.m_num_edges)
    9696        , m_max_vertex_index(x.m_max_vertex_index), m_max_edge_index(x.m_max_edge_index)
    9797    { }
    9898