From a628773d0a06f3650e3b251dda5f9753068f5af6 Mon Sep 17 00:00:00 2001 From: Sven Oesau Date: Mon, 26 Feb 2024 15:08:58 +0100 Subject: [PATCH] ci fix --- Orthtree/include/CGAL/Orthtree.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Orthtree/include/CGAL/Orthtree.h b/Orthtree/include/CGAL/Orthtree.h index 3cc408ed82e..77d95c4c898 100644 --- a/Orthtree/include/CGAL/Orthtree.h +++ b/Orthtree/include/CGAL/Orthtree.h @@ -668,8 +668,9 @@ public: Sphere query_sphere(query, (std::numeric_limits::max)()); Orthtrees::nearest_k_neighbors_in_radius(*this, query_sphere, k, boost::make_function_output_iterator - ([&](const Traits::Node_data_element index) - {*output++ = get(m_traits.m_point_map, index); })); + ([&](const typename Traits::Node_data_element index) { + *output++ = get(m_traits.m_point_map, index); + })); return output; } @@ -681,8 +682,9 @@ public: Orthtrees::nearest_k_neighbors_in_radius(*this, query_sphere, (std::numeric_limits::max)(), boost::make_function_output_iterator - ([&](const Traits::Node_data_element index) - {*output++ = get(m_traits.m_point_map, index); })); + ([&](const typename Traits::Node_data_element index) { + *output++ = get(m_traits.m_point_map, index); + })); return output; }