From 6fd1be99a60e3de266d86cbc71f43fabf16ccdec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Jamin?= Date: Tue, 5 Jan 2021 18:01:06 +0100 Subject: [PATCH] Remove debug output I think this output was for debug purpose --- .../include/CGAL/edge_aware_upsample_point_set.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Point_set_processing_3/include/CGAL/edge_aware_upsample_point_set.h b/Point_set_processing_3/include/CGAL/edge_aware_upsample_point_set.h index 57f0c12154f..1a92bb380cc 100644 --- a/Point_set_processing_3/include/CGAL/edge_aware_upsample_point_set.h +++ b/Point_set_processing_3/include/CGAL/edge_aware_upsample_point_set.h @@ -381,8 +381,6 @@ edge_aware_upsample_point_set( double neighbor_radius = choose_parameter(get_parameter(np, internal_np::neighbor_radius), -1); std::size_t number_of_output_points = choose_parameter(get_parameter(np, internal_np::number_of_output_points), 1000); - std::cerr << sharpness_angle << " " << edge_sensitivity << " " << neighbor_radius - << " " << number_of_output_points << std::endl; // trick in case the output iterator add points to the input container typename PointRange::const_iterator begin = points.begin(); typename PointRange::const_iterator end = points.end();