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

dijkstra_shortest_paths.hpp: Fix no_init version invocation(Jürgen Hunold)

[SVN r23346]
This commit is contained in:
Douglas Gregor
2004-07-05 15:41:47 +00:00
parent 7b66953776
commit e0435ccc26

View File

@@ -211,7 +211,7 @@ namespace boost {
put(distance, s, zero);
dijkstra_shortest_paths_no_init(g, s, predecessor, distance, weight,
index_map, compare, combine, inf, zero, vis);
index_map, compare, combine, zero, vis);
}
namespace detail {