From 9cdaacb7d0d80d16e6dcf7714cf258ab0f57b149 Mon Sep 17 00:00:00 2001 From: Sebastien Loriot Date: Sat, 27 Sep 2025 08:32:50 +0200 Subject: [PATCH] warnings --- Surface_mesh/test/Surface_mesh/issue_9086.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Surface_mesh/test/Surface_mesh/issue_9086.cpp b/Surface_mesh/test/Surface_mesh/issue_9086.cpp index ef3ee449771..47a49f2a8a5 100644 --- a/Surface_mesh/test/Surface_mesh/issue_9086.cpp +++ b/Surface_mesh/test/Surface_mesh/issue_9086.cpp @@ -8,15 +8,15 @@ int main() { CGAL::Surface_mesh mesh; auto f0 = mesh.add_face(); - auto f1 = mesh.add_face(); // If this line is commented out, it will not crash. + mesh.add_face(); mesh.remove_face(f0); auto v0 = mesh.add_vertex(); - auto v1 = mesh.add_vertex(); // If this line is commented out, it will not crash. + mesh.add_vertex(); mesh.remove_vertex(v0); auto e0 = mesh.add_edge(); - auto e1 = mesh.add_edge(); // If this line is commented out, it will not crash. + mesh.add_edge(); mesh.remove_edge(edge(e0,mesh));