From d01fa7bdddfb0bbcd04ad58abae09680e161be8e Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 10 May 2022 07:16:14 +0100 Subject: [PATCH] int -> std::size_t --- .../include/CGAL/Polygon_mesh_processing/triangulate_hole.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/triangulate_hole.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/triangulate_hole.h index 83d7be337e4..71351e37125 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/triangulate_hole.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/triangulate_hole.h @@ -46,7 +46,7 @@ namespace Polygon_mesh_processing { #ifndef DOXYGEN_RUNNING void start_planar_phase() const {} void end_planar_phase(bool) const {} - void start_quadratic_phase(int /* n */) const {} + void start_quadratic_phase(std::size_t /* n */) const {} void quadratic_step() const {} void end_quadratic_phase(bool) const {} void start_cubic_phase(int /* n */) const {}