0 -> FT(0)

This commit is contained in:
Andreas Fabri 2010-06-22 11:52:55 +00:00
parent 44a0da017c
commit 7ff07cae2c
1 changed files with 2 additions and 2 deletions

View File

@ -102,8 +102,8 @@ namespace CGAL {
Kd_tree_rectangle(int d)
: dim(d), lower_(new FT[d]), upper_(new FT[d]), max_span_coord_(0)
{
std::fill(lower_, lower_ + dim, 0);
std::fill(upper_, upper_ + dim, 0);
std::fill(lower_, lower_ + dim, FT(0));
std::fill(upper_, upper_ + dim, FT(0));
}
Kd_tree_rectangle()