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); }