Ticket #4197: patchfile.patch

File patchfile.patch, 545 bytes (added by Alec Chapman <archapm@…>, 12 years ago)

patch

  • undirected_graph.hpp

     
    9494    { }
    9595
    9696    inline undirected_graph(undirected_graph const& x)
    97         : m_graph(x), m_num_vertices(x.m_num_vertices), m_num_edges(x.m_num_edges)
     97        : m_graph(x.m_graph), m_num_vertices(x.m_num_vertices), m_num_edges(x.m_num_edges)
    9898        , m_max_vertex_index(x.m_max_vertex_index), m_max_edge_index(x.m_max_edge_index)
    9999    { }
    100100