From 30d0e0ea2a30f130fb9b445229c96673bc33e4c8 Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Mon, 20 Jul 2009 15:07:14 +0000 Subject: [PATCH] Applied r55027 from trunk, except cycle_ratio_example.cpp which was already fixed [SVN r55045] --- include/boost/graph/compressed_sparse_row_graph.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/graph/compressed_sparse_row_graph.hpp b/include/boost/graph/compressed_sparse_row_graph.hpp index 8ca022e5..e17e6947 100644 --- a/include/boost/graph/compressed_sparse_row_graph.hpp +++ b/include/boost/graph/compressed_sparse_row_graph.hpp @@ -1104,7 +1104,7 @@ class compressed_sparse_row_graph } template + typename GlobalToLocal> void add_edges_sorted_internal_global( BidirectionalIteratorOrig first_sorted, @@ -1340,7 +1340,7 @@ add_edge(Vertex src, Vertex tgt, const GlobalToLocal& global_to_local, BOOST_CSR_GRAPH_TYPE& g) { g.add_edges_sorted_internal_global(first_sorted, last_sorted, ep_iter_sorted, - global_to_local); + global_to_local); } // Add edges from a sorted (smallest sources first) range of pairs @@ -1360,7 +1360,7 @@ add_edge(Vertex src, Vertex tgt, typename GlobalToLocal> inline void add_edges_global(InputIterator first, InputIterator last, - const GlobalToLocal& global_to_local, BOOST_CSR_GRAPH_TYPE& g) { + const GlobalToLocal& global_to_local, BOOST_CSR_GRAPH_TYPE& g) { g.add_edges_internal(first, last, global_to_local); }