From cf07ee9c91d4fd89576a2adce7174a73153cdafd Mon Sep 17 00:00:00 2001 From: Charles Gueunet Date: Mon, 22 May 2023 10:54:42 +0200 Subject: [PATCH] Trailing 'l' on return statement In CERES_SOLVER mode only --- .../internal/Smoothing/mesh_smoothing_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Smoothing/mesh_smoothing_impl.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Smoothing/mesh_smoothing_impl.h index f2b9cd89b87..e15ae718823 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Smoothing/mesh_smoothing_impl.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Smoothing/mesh_smoothing_impl.h @@ -468,7 +468,7 @@ public: // std::cout << "y : " << initial_y << " -> " << y << "\n"; // std::cout << "z : " << initial_z << " -> " << z << "\n"; - return Vector(FT(x - initial_x), FT(y - initial_y), FT(z - initial_z))l; + return Vector(FT(x - initial_x), FT(y - initial_y), FT(z - initial_z)); #else CGAL_USE(v); return CGAL::NULL_VECTOR;