From 3d1f7e530e87c2e162dadb5d5cd77d4a55ef989d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Mon, 10 Jan 2022 13:33:37 +0100 Subject: [PATCH] forgot to remove another default --- .../include/CGAL/structure_point_set.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Point_set_processing_3/include/CGAL/structure_point_set.h b/Point_set_processing_3/include/CGAL/structure_point_set.h index c1142bbe250..720b7e6402d 100644 --- a/Point_set_processing_3/include/CGAL/structure_point_set.h +++ b/Point_set_processing_3/include/CGAL/structure_point_set.h @@ -185,7 +185,7 @@ public: \cgalParamDescription{a property map associating the index of a point in the input range to the index of plane (`-1` if the point is not assigned to a plane)} \cgalParamType{a class model of `ReadablePropertyMap` with `std::size_t` as key type and `int` as value type} - \cgalParamDefault{There is no default, this parameters is mandatory} + \cgalParamDefault{There is no default, this parameters is mandatory.} \cgalParamNEnd \cgalParamNBegin{plane_map} @@ -1504,7 +1504,7 @@ private: \param planes input plane range. \param output output iterator where output points are written \param epsilon size parameter. - \param np an optional sequence of \ref bgl_namedparameters "Named Parameters" among the ones listed below + \param np a sequence of \ref bgl_namedparameters "Named Parameters" among the ones listed below \cgalNamedParamsBegin \cgalParamNBegin{point_map} @@ -1524,8 +1524,7 @@ private: \cgalParamDescription{a property map associating the index of a point in the input range to the index of plane (`-1` if the point is not assigned to a plane)} \cgalParamType{a class model of `ReadablePropertyMap` with `std::size_t` as key type and `int` as value type} - \cgalParamDefault{unused} - \cgalParamNEnd + \cgalParamDefault{There is no default, this parameters is mandatory.} \cgalParamNBegin{plane_map} \cgalParamDescription{a property map containing the planes associated to the elements of the plane range `planes`} @@ -1551,14 +1550,14 @@ private: template OutputIterator structure_point_set (const PointRange& points, const PlaneRange& planes, OutputIterator output, double epsilon, - const NamedParameters& np = parameters::use_default_values()) + const NamedParameters& np) { using parameters::choose_parameter; using parameters::get_parameter;