From 09c9c3044d58d801751ee1a4cbcad9f1a8cfdf10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Tue, 24 Mar 2020 15:54:44 +0100 Subject: [PATCH] Fix not propagating traits to CH3 code --- .../include/CGAL/Optimal_bounding_box/oriented_bounding_box.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Optimal_bounding_box/include/CGAL/Optimal_bounding_box/oriented_bounding_box.h b/Optimal_bounding_box/include/CGAL/Optimal_bounding_box/oriented_bounding_box.h index 54d33108769..7dafd269b66 100644 --- a/Optimal_bounding_box/include/CGAL/Optimal_bounding_box/oriented_bounding_box.h +++ b/Optimal_bounding_box/include/CGAL/Optimal_bounding_box/oriented_bounding_box.h @@ -171,7 +171,7 @@ void construct_oriented_bounding_box(const PointRange& points, if(use_ch) // construct the convex hull to reduce the number of points { std::vector ch_points; - extreme_points_3(points, std::back_inserter(ch_points)); + extreme_points_3(points, std::back_inserter(ch_points), traits); #ifdef CGAL_OPTIMAL_BOUNDING_BOX_DEBUG std::cout << ch_points.size() << " points on the convex hull" << std::endl;