From 2e15f13dc45a77d99e0f0a4f0c6efdaa43a9351e Mon Sep 17 00:00:00 2001 From: Jane Tournois Date: Fri, 26 Sep 2025 10:16:16 +0200 Subject: [PATCH] remove cout --- Mesh_3/include/CGAL/Mesh_domain_with_polyline_features_3.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Mesh_3/include/CGAL/Mesh_domain_with_polyline_features_3.h b/Mesh_3/include/CGAL/Mesh_domain_with_polyline_features_3.h index 5acc1002529..938ec3d14fe 100644 --- a/Mesh_3/include/CGAL/Mesh_domain_with_polyline_features_3.h +++ b/Mesh_3/include/CGAL/Mesh_domain_with_polyline_features_3.h @@ -321,7 +321,6 @@ public: // If polyline is a loop, ensure that distance is given from start_it if(is_loop()) { - std::cout << "is loop" << std::endl; if(distance < FT(0)) { distance += length(); } else if(distance > length()) { distance -= length(); } }