fix warnings

This commit is contained in:
Sven Oesau 2025-02-06 10:34:41 +01:00
parent 9f049bd425
commit 531e612e5f
1 changed files with 1 additions and 5 deletions

View File

@ -111,11 +111,7 @@ namespace CGAL {
explicit
Kd_tree_rectangle(const Kd_tree_rectangle& r)
: max_span_coord_(r.max_span_coord_)
{
lower_ = r.lower_;
upper_ = r.upper_;
}
: lower_(r.lower_), upper_(r.upper_), max_span_coord_(r.max_span_coord_) {}
template <class Construct_cartesian_const_iterator_d,class PointPointerIter>
void update_from_point_pointers(PointPointerIter begin,