From 98e541c930d95ea61d8d51400e66143558478d32 Mon Sep 17 00:00:00 2001 From: Tuukka Norri Date: Fri, 8 Nov 2024 12:21:28 +0200 Subject: [PATCH] Fix missing namespace name --- include/boost/graph/cycle_canceling.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/graph/cycle_canceling.hpp b/include/boost/graph/cycle_canceling.hpp index 5aaa25e75..c355db512 100644 --- a/include/boost/graph/cycle_canceling.hpp +++ b/include/boost/graph/cycle_canceling.hpp @@ -172,7 +172,7 @@ namespace detail template < class Graph, class P, class T, class R > void cycle_canceling(Graph& g, const bgl_named_params< P, T, R >& params) { - cycle_canceling_dispatch1(g, + detail::cycle_canceling_dispatch1(g, choose_const_pmap(get_param(params, edge_weight), g, edge_weight), choose_const_pmap(get_param(params, edge_reverse), g, edge_reverse), choose_pmap(get_param(params, edge_residual_capacity), g,