From 6112a36847f5c1e29a5666e72187d2238285dbef Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 20 Feb 2024 17:26:37 +0000 Subject: [PATCH] unsigned int -> std::size_t --- Envelope_3/include/CGAL/Envelope_3/Envelope_element_visitor_3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Envelope_3/include/CGAL/Envelope_3/Envelope_element_visitor_3.h b/Envelope_3/include/CGAL/Envelope_3/Envelope_element_visitor_3.h index 84247c5d3fe..815b23f6cc2 100644 --- a/Envelope_3/include/CGAL/Envelope_3/Envelope_element_visitor_3.h +++ b/Envelope_3/include/CGAL/Envelope_3/Envelope_element_visitor_3.h @@ -482,7 +482,7 @@ public: // find the intersection points and overlapping segments with the // original curve and insert them to the list of split points // intersect the x-monotone curve with the edge's curve - typedef std::pair Intersect_point_2; + typedef std::pair Intersect_point_2; std::list> intersections_list;