From 245e36feba7f06eadbf5ce570f9c8fad8717a000 Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Fri, 27 Jul 2012 18:23:02 +0000 Subject: [PATCH] Fixed order of arguments to get_param_type [SVN r79772] --- include/boost/graph/undirected_dfs.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/boost/graph/undirected_dfs.hpp b/include/boost/graph/undirected_dfs.hpp index 0dcc9c28..a3e1c038 100644 --- a/include/boost/graph/undirected_dfs.hpp +++ b/include/boost/graph/undirected_dfs.hpp @@ -219,8 +219,7 @@ namespace boost { undirected_dfs(const Graph& g, const bgl_named_params& params) { - typedef typename get_param_type< bgl_named_params, - vertex_color_t>::type C; + typedef typename get_param_type< vertex_color_t, bgl_named_params >::type C; detail::udfs_dispatch::apply (g, choose_param(get_param(params, graph_visitor),