From eddf0b6dd0c677e7f6c91743e1e58a20a013a7a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 8 Nov 2024 19:25:48 +0100 Subject: [PATCH] fix compilation errors --- Polygon_repair/include/CGAL/Polygon_repair/repair.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Polygon_repair/include/CGAL/Polygon_repair/repair.h b/Polygon_repair/include/CGAL/Polygon_repair/repair.h index 1c380b43404b..37957d302232 100644 --- a/Polygon_repair/include/CGAL/Polygon_repair/repair.h +++ b/Polygon_repair/include/CGAL/Polygon_repair/repair.h @@ -803,7 +803,7 @@ join(const Multipolygon_with_holes_2& pa) } }; - CGAL::Polygon_repair::Boolean bops; + CGAL::Polygon_repair::Boolean bops; bops.insert(pa); bops.mark_domains(); Larger_than_zero ltz; @@ -826,7 +826,7 @@ decltype(auto) join(const PA& pa, const PB& pb, const Kernel& = Default(), const Container& = Default()) { typedef typename Default::Get::type Traits; - typedef typename Default::Get::type Container; + typedef typename Default::Get::type Container_; struct Larger_than_zero { bool operator()(int i) const @@ -835,7 +835,7 @@ join(const PA& pa, const PB& pb, const Kernel& = Default(), const Container& = D } }; - CGAL::Polygon_repair::Boolean bops; + CGAL::Polygon_repair::Boolean bops; bops.insert(pa); bops.insert(pb); bops.mark_domains(); @@ -889,7 +889,7 @@ decltype(auto) intersect(const PA& pa, const PB& pb, const Kernel& = Default(), const Container& = Default()) { typedef typename Default::Get::type Traits; - typedef typename Default::Get::type Container; + typedef typename Default::Get::type Container_; struct Equal { bool operator()(int i) const @@ -898,7 +898,7 @@ intersect(const PA& pa, const PB& pb, const Kernel& = Default(), const Container } }; - CGAL::Polygon_repair::Boolean bops; + CGAL::Polygon_repair::Boolean bops; bops.insert(pa); bops.insert(pb); bops.mark_domains();