mirror of https://github.com/CGAL/cgal
fix warnings
This commit is contained in:
parent
9f049bd425
commit
531e612e5f
|
|
@ -111,11 +111,7 @@ namespace CGAL {
|
||||||
|
|
||||||
explicit
|
explicit
|
||||||
Kd_tree_rectangle(const Kd_tree_rectangle& r)
|
Kd_tree_rectangle(const Kd_tree_rectangle& r)
|
||||||
: max_span_coord_(r.max_span_coord_)
|
: lower_(r.lower_), upper_(r.upper_), max_span_coord_(r.max_span_coord_) {}
|
||||||
{
|
|
||||||
lower_ = r.lower_;
|
|
||||||
upper_ = r.upper_;
|
|
||||||
}
|
|
||||||
|
|
||||||
template <class Construct_cartesian_const_iterator_d,class PointPointerIter>
|
template <class Construct_cartesian_const_iterator_d,class PointPointerIter>
|
||||||
void update_from_point_pointers(PointPointerIter begin,
|
void update_from_point_pointers(PointPointerIter begin,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue