2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-02 08:52:10 +00:00

Applied r55027 from trunk, except cycle_ratio_example.cpp which was already fixed

[SVN r55045]
This commit is contained in:
Jeremiah Willcock
2009-07-20 15:07:14 +00:00
parent 9a9bd728e7
commit 30d0e0ea2a

View File

@@ -1104,7 +1104,7 @@ class compressed_sparse_row_graph
}
template <typename BidirectionalIteratorOrig, typename EPIterOrig,
typename GlobalToLocal>
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);
}