Ticket #6564: subgraph.hpp.patch

File subgraph.hpp.patch, 574 bytes (added by ernest.galbrun@…, 11 years ago)

suggested patch

  • subgraph.hpp

     
    133133    subgraph(const subgraph& x)
    134134        : m_graph(x.m_graph), m_parent(x.m_parent), m_edge_counter(x.m_edge_counter)
    135135        , m_global_vertex(x.m_global_vertex), m_global_edge(x.m_global_edge)
     136        , m_local_vertex(x.m_local_vertex), m_local_edge(x.m_local_edge)
    136137    {
    137138        // Do a deep copy (recursive).
    138139        for(typename ChildrenList::const_iterator i = x.m_children.begin();