From 4d9aa39a908258b1c9009c67a0bbc06c3bc55e8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Thu, 27 Jun 2019 08:11:13 +0200 Subject: [PATCH] Remove "warning" in std::cerr to avoid false positive in the testsuite --- .../include/CGAL/Polygon_mesh_processing/smooth_mesh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/smooth_mesh.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/smooth_mesh.h index 7e2e32a1eee..d3239c25355 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/smooth_mesh.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/smooth_mesh.h @@ -169,7 +169,7 @@ void smooth_mesh(const FaceRange& faces, #endif if(!use_angle_smoothing && !use_area_smoothing) - std::cerr << "Warning: called PMP::smooth_mesh() but no smoothing method is being used" << std::endl; + std::cerr << "Called PMP::smooth_mesh() without any smoothing method selected or available" << std::endl; unsigned int nb_iterations = choose_param(get_param(np, internal_np::number_of_iterations), 1); const bool do_project = choose_param(get_param(np, internal_np::do_project), true);