From e0435ccc26340f6d90c30a810e040fb623cdfe8d Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Mon, 5 Jul 2004 15:41:47 +0000 Subject: [PATCH] =?UTF-8?q?dijkstra=5Fshortest=5Fpaths.hpp:=20Fix=20no=5Fi?= =?UTF-8?q?nit=20version=20invocation(J=C3=83=C2=BCrgen=20Hunold)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [SVN r23346] --- include/boost/graph/dijkstra_shortest_paths.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/graph/dijkstra_shortest_paths.hpp b/include/boost/graph/dijkstra_shortest_paths.hpp index 41d581c5..821923fc 100644 --- a/include/boost/graph/dijkstra_shortest_paths.hpp +++ b/include/boost/graph/dijkstra_shortest_paths.hpp @@ -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 {