From eaa70a7520d78c5033f3a72497b9a69b5b85316c Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 11 May 2022 07:06:41 +0100 Subject: [PATCH] int -> std::size_t (only catched with /W3) --- .../Polygon_mesh_processing/hole_filling_visitor_example.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Polygon_mesh_processing/examples/Polygon_mesh_processing/hole_filling_visitor_example.cpp b/Polygon_mesh_processing/examples/Polygon_mesh_processing/hole_filling_visitor_example.cpp index b62ad8eb1b1..97db0ba99de 100644 --- a/Polygon_mesh_processing/examples/Polygon_mesh_processing/hole_filling_visitor_example.cpp +++ b/Polygon_mesh_processing/examples/Polygon_mesh_processing/hole_filling_visitor_example.cpp @@ -126,8 +126,8 @@ struct Progress : mutable Timer timer; double time_limit; - int quadratic_n = 0, quadratic_i = 0, quadratic_report = 0; - int cubic_n = 0, cubic_i = 0, cubic_report = 0; + std::size_t quadratic_n = 0, quadratic_i = 0, quadratic_report = 0; + std::size_t cubic_n = 0, cubic_i = 0, cubic_report = 0; }; // Incrementally fill the holes that are no larger than given diameter