mirror of https://github.com/CGAL/cgal
replaced .assign() with .fill()
This commit is contained in:
parent
9b3d496572
commit
4bf11c0edc
|
|
@ -105,8 +105,8 @@ namespace CGAL {
|
|||
Kd_tree_rectangle(int d)
|
||||
: max_span_coord_(0)
|
||||
{
|
||||
lower_.assign(FT(0));
|
||||
upper_.assign(FT(0));
|
||||
lower_.fill(FT(0));
|
||||
upper_.fill(FT(0));
|
||||
}
|
||||
|
||||
Kd_tree_rectangle()
|
||||
|
|
|
|||
Loading…
Reference in New Issue