From 046f1db10ae419e99c1006eff79c5f892be27ffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Sat, 4 Jun 2022 19:12:54 +0200 Subject: [PATCH] function call is also working now! --- STL_Extension/include/CGAL/Named_function_parameters.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/STL_Extension/include/CGAL/Named_function_parameters.h b/STL_Extension/include/CGAL/Named_function_parameters.h index 165f46b5a68..ce108229e9d 100644 --- a/STL_Extension/include/CGAL/Named_function_parameters.h +++ b/STL_Extension/include/CGAL/Named_function_parameters.h @@ -317,6 +317,14 @@ inline no_parameters(Named_function_parameters) template struct Boost_parameter_compatibility_wrapper { + template + Named_function_parameters + operator()(const K& p) const + { + typedef Named_function_parameters Params; + return Params(p); + } + template Named_function_parameters operator=(const K& p) const