From c7feb6cc0cdf41d6fd5126753ca40c85b99cc2af Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Mon, 21 Jun 2010 16:47:25 +0000 Subject: [PATCH] int -> size_type/std::size_t --- Convex_hull_3/include/CGAL/convex_hull_3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Convex_hull_3/include/CGAL/convex_hull_3.h b/Convex_hull_3/include/CGAL/convex_hull_3.h index 69b979cc712..62f37612ad5 100644 --- a/Convex_hull_3/include/CGAL/convex_hull_3.h +++ b/Convex_hull_3/include/CGAL/convex_hull_3.h @@ -550,7 +550,7 @@ convex_hull_3(InputIterator first, InputIterator beyond, // If the first and last point are equal the collinearity test some lines below will always be true. Point_3_list points(first, beyond); - unsigned int size = points.size(); + std::size_t size = points.size(); while((size > 1) && (points.front() == points.back())){ points.pop_back(); --size;