From da690fda1182fa8cd5e3551824a0104c78c6c45b Mon Sep 17 00:00:00 2001 From: ange-clement Date: Fri, 5 Apr 2024 11:09:33 +0200 Subject: [PATCH] Fixed warning unused variables --- .../include/CGAL/STL_Extension/internal/mesh_option_classes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/STL_Extension/include/CGAL/STL_Extension/internal/mesh_option_classes.h b/STL_Extension/include/CGAL/STL_Extension/internal/mesh_option_classes.h index b63baf3bb65..659ed137860 100644 --- a/STL_Extension/include/CGAL/STL_Extension/internal/mesh_option_classes.h +++ b/STL_Extension/include/CGAL/STL_Extension/internal/mesh_option_classes.h @@ -359,9 +359,9 @@ struct Initial_points_generator_generator struct Initial_points_generator_empty { - OutputIterator operator()(OutputIterator pts, const MeshDomain& domain, const C3t3& c3t3) + OutputIterator operator()(OutputIterator pts, const MeshDomain& , const C3t3& ) { return pts; } - OutputIterator operator()(OutputIterator pts, const MeshDomain& domain, const C3t3& c3t3, int n) + OutputIterator operator()(OutputIterator pts, const MeshDomain& , const C3t3& , int ) { return pts; } };