From 6aaa37f3efdf8d9ed8b401f4939154a392b28796 Mon Sep 17 00:00:00 2001 From: Sven Oesau Date: Thu, 26 Jun 2025 16:26:12 +0200 Subject: [PATCH] defaulting to Convex_hull_traits_3 instead of Kernel_traits::type --- Convex_hull_3/include/CGAL/convex_hull_3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Convex_hull_3/include/CGAL/convex_hull_3.h b/Convex_hull_3/include/CGAL/convex_hull_3.h index 50e4a08627c..9f37e70fffe 100644 --- a/Convex_hull_3/include/CGAL/convex_hull_3.h +++ b/Convex_hull_3/include/CGAL/convex_hull_3.h @@ -1092,7 +1092,7 @@ void convex_hull_3(InputIterator first, InputIterator beyond, std::enable_if_t::value>* = 0) { typedef typename std::iterator_traits::value_type Point_3; - typedef typename Kernel_traits::type Traits; + typedef Convex_hull_traits_3::type> Traits; Convex_hull_3::internal::Indexed_triangle_set its(vertices,faces); convex_hull_3(first, beyond, its, Traits());