From 50fc1c06a1b5f28cad81a8f327154ffcdc8fec10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Thu, 22 Jun 2017 11:03:13 +0200 Subject: [PATCH] Fixed unused variable warning --- .../Orbifold_Tutte_parameterizer_3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Surface_mesh_parameterization/include/CGAL/Surface_mesh_parameterization/Orbifold_Tutte_parameterizer_3.h b/Surface_mesh_parameterization/include/CGAL/Surface_mesh_parameterization/Orbifold_Tutte_parameterizer_3.h index 49b29899473..98b2027d708 100644 --- a/Surface_mesh_parameterization/include/CGAL/Surface_mesh_parameterization/Orbifold_Tutte_parameterizer_3.h +++ b/Surface_mesh_parameterization/include/CGAL/Surface_mesh_parameterization/Orbifold_Tutte_parameterizer_3.h @@ -352,7 +352,7 @@ private: // (note that this should thus be 2*num_vertices, but in the filling functions // we use 2*line_number to fill two at the time...) int current_line_id_in_M = static_cast(num_vertices(mesh)); - int initial_line_id = current_line_id_in_M; + CGAL_assertion_code(int initial_line_id = current_line_id_in_M;) // Initialize some variables used in the seam walk int start_cone_index = -1; // index of the beginning of the seam