From e73cf18c12a3ea1c2059635b5429bb3b882d9803 Mon Sep 17 00:00:00 2001 From: Efi Fogel Date: Wed, 10 Sep 2025 18:35:30 +0300 Subject: [PATCH] Removed unused typedefs --- .../CGAL/Boolean_set_operations_2/Gps_bfs_xor_visitor.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Boolean_set_operations_2/include/CGAL/Boolean_set_operations_2/Gps_bfs_xor_visitor.h b/Boolean_set_operations_2/include/CGAL/Boolean_set_operations_2/Gps_bfs_xor_visitor.h index f3dfb43fca7..c3380009cd6 100644 --- a/Boolean_set_operations_2/include/CGAL/Boolean_set_operations_2/Gps_bfs_xor_visitor.h +++ b/Boolean_set_operations_2/include/CGAL/Boolean_set_operations_2/Gps_bfs_xor_visitor.h @@ -56,11 +56,8 @@ public: * \param arr The given arrangement. */ void after_scan(Arrangement& arr) { - typedef typename Arrangement::Geometry_traits_2 Traits; - typedef typename Traits::Compare_endpoints_xy_2 Compare_endpoints_xy_2; - typedef typename Traits::Construct_opposite_2 Construct_opposite_2; - typedef typename Traits::X_monotone_curve_2 X_monotone_curve_2; - typedef typename Arrangement::Edge_iterator Edge_iterator; + using Traits = typename Arrangement::Geometry_traits_2; + using X_monotone_curve_2 = typedef typename Traits::X_monotone_curve_2; Traits tr; auto cmp_endpoints = tr.compare_endpoints_xy_2_object();