From e95ea7cde7d30ea6d6da40d66ff61336f5fa4a03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 4 Jul 2024 18:36:55 +0200 Subject: [PATCH] unused variable --- .../isotropic_remeshing_with_allow_move.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polygon_mesh_processing/examples/Polygon_mesh_processing/isotropic_remeshing_with_allow_move.cpp b/Polygon_mesh_processing/examples/Polygon_mesh_processing/isotropic_remeshing_with_allow_move.cpp index 1f74ab88f3e..7ee9fa7bcf7 100644 --- a/Polygon_mesh_processing/examples/Polygon_mesh_processing/isotropic_remeshing_with_allow_move.cpp +++ b/Polygon_mesh_processing/examples/Polygon_mesh_processing/isotropic_remeshing_with_allow_move.cpp @@ -28,7 +28,7 @@ struct Allow_no_surface_crossing : m_side_of_tmesh(mesh) {} - bool operator()(vertex_descriptor v, Point_3 src, Point_3 tgt) const + bool operator()(vertex_descriptor, Point_3 src, Point_3 tgt) const { const CGAL::Bounded_side s_src = m_side_of_tmesh(src); const CGAL::Bounded_side s_tgt = m_side_of_tmesh(tgt);