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

Fixed order of arguments to get_param_type

[SVN r79772]
This commit is contained in:
Jeremiah Willcock
2012-07-27 18:23:02 +00:00
parent 1cdce524a2
commit 245e36feba

View File

@@ -219,8 +219,7 @@ namespace boost {
undirected_dfs(const Graph& g,
const bgl_named_params<P, T, R>& params)
{
typedef typename get_param_type< bgl_named_params<P, T, R>,
vertex_color_t>::type C;
typedef typename get_param_type< vertex_color_t, bgl_named_params<P, T, R> >::type C;
detail::udfs_dispatch<C>::apply
(g,
choose_param(get_param(params, graph_visitor),