Index: adjacency_matrix.hpp =================================================================== RCS file: /cvsroot/boost/boost/boost/graph/adjacency_matrix.hpp,v retrieving revision 1.39 diff -u -r1.39 adjacency_matrix.hpp --- adjacency_matrix.hpp 29 Jun 2004 02:30:29 -0000 1.39 +++ adjacency_matrix.hpp 17 Jul 2004 08:20:51 -0000 @@ -564,7 +564,7 @@ Graph& g = const_cast(g_); typename Graph::vertices_size_type offset = u * (u + 1) / 2; typename Graph::MatrixIter f = g.m_matrix.begin() + offset; - typename Graph::MatrixIter l = g.m_matrix.end() + u; + typename Graph::MatrixIter l = f + u; typename Graph::unfiltered_out_edge_iter first(f, u, g.m_vertex_set.size())