From 09392bb38404cfaf86873c339dc42f45fbbdf2de Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Mon, 16 Apr 2012 23:17:12 +0000 Subject: [PATCH] Fixed argument order to get_param_type [SVN r78031] --- include/boost/graph/distributed/dijkstra_shortest_paths.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/boost/graph/distributed/dijkstra_shortest_paths.hpp b/include/boost/graph/distributed/dijkstra_shortest_paths.hpp index 9f4679f..acfd194 100644 --- a/include/boost/graph/distributed/dijkstra_shortest_paths.hpp +++ b/include/boost/graph/distributed/dijkstra_shortest_paths.hpp @@ -190,8 +190,7 @@ namespace boost { IndexMap> DefColorMap; DefColorMap color_map(color.begin(), index_map); - typedef typename get_param_type< bgl_named_params, - vertex_color_t>::type color_map_type; + typedef typename get_param_type< vertex_color_t, bgl_named_params >::type color_map_type; graph::detail::parallel_dijkstra_impl ::run(g, s, predecessor, distance,