Ticket #4197: patchfile.patch
File patchfile.patch, 545 bytes (added by , 12 years ago) |
---|
-
undirected_graph.hpp
94 94 { } 95 95 96 96 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) 98 98 , m_max_vertex_index(x.m_max_vertex_index), m_max_edge_index(x.m_max_edge_index) 99 99 { } 100 100