replaced .assign() with .fill()

This commit is contained in:
m.overtheil 2014-12-02 16:04:20 +01:00
parent 9b3d496572
commit 4bf11c0edc
1 changed files with 2 additions and 2 deletions

View File

@ -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()