From 375681748d7a2624b57167d6b387919cc2a28fd1 Mon Sep 17 00:00:00 2001 From: Efi Fogel Date: Tue, 26 Aug 2025 22:30:48 +0300 Subject: [PATCH] Cleaned up --- .../include/CGAL/Boolean_set_operations_2/Gps_agg_op.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Boolean_set_operations_2/include/CGAL/Boolean_set_operations_2/Gps_agg_op.h b/Boolean_set_operations_2/include/CGAL/Boolean_set_operations_2/Gps_agg_op.h index f760a668013..6cf7deb8cdc 100644 --- a/Boolean_set_operations_2/include/CGAL/Boolean_set_operations_2/Gps_agg_op.h +++ b/Boolean_set_operations_2/include/CGAL/Boolean_set_operations_2/Gps_agg_op.h @@ -78,7 +78,6 @@ class Gps_agg_op { using Surface_sweep_2 = Gps_agg_op_surface_sweep_2; using Edges_hash = Unique_hash_map; - using Faces_hash = Unique_hash_map; using Bfs_scanner = Gps_bfs_scanner; @@ -113,12 +112,12 @@ public: Arr* arr = (arr_vec[i]).first; if (arr->reference_face()->contained()) ++n_inf_pgn; - Edge_iterator itr = arr->edges_begin(); + Edge_iterator itr = arr->edges_begin(); for(; itr != arr->edges_end(); ++itr) { // take only relevant edges (which separate between contained and // non-contained faces. Halfedge_iterator he = itr; - if(he->face()->contained() == he->twin()->face()->contained()) + if (he->face()->contained() == he->twin()->face()->contained()) continue; if ((Arr_halfedge_direction)he->direction() == ARR_RIGHT_TO_LEFT) he = he->twin();