adapted partial specialization

This commit is contained in:
Sven Oesau 2022-05-24 15:10:26 +02:00
parent 82b3626556
commit c7ae5ab054
1 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@
/// - User is responsible to call invalidate_bounds() after adding, moving or removing points. /// - User is responsible to call invalidate_bounds() after adding, moving or removing points.
/// - Selecting points changes the order of the points in the /// - Selecting points changes the order of the points in the
/// container. If selection is *not* empty, it becomes invalid after /// container. If selection is *not* empty, it becomes invalid after
/// adding, moving or removing points, user is reponsible to call /// adding, moving or removing points, user is responsible to call
/// unselect_all() in those cases. /// unselect_all() in those cases.
/// ///
/// @heading Parameters: /// @heading Parameters:
@ -579,9 +579,9 @@ namespace CGAL
{ {
// specialization for default named parameters // specialization for default named parameters
template <typename Gt, typename NamedParameters> template <typename Gt, typename NamedParameters, typename DPM, typename DVM>
struct Point_set_processing_3_np_helper<::Point_set_3<Gt>, NamedParameters> struct Point_set_processing_3_np_helper<::Point_set_3<Gt>, NamedParameters, DPM, DVM>
: public Point_set_processing_3_np_helper<typename ::Point_set_3<Gt>::Base, NamedParameters> : public Point_set_processing_3_np_helper<typename ::Point_set_3<Gt>::Base, NamedParameters, DPM, DVM>
{}; {};
} }