Fix uninitalized variables

This commit is contained in:
Simon Giraudot 2020-04-14 09:40:38 +02:00
parent 74f1cad971
commit c00aeffdd9
1 changed files with 4 additions and 0 deletions

View File

@ -472,6 +472,10 @@ namespace CGAL {
// default constructor
Kd_tree_internal_node()
: cut_dim(-1), cut_val(0)
, lower_ch (nullptr), upper_ch (nullptr)
, upper_low_val(0), upper_high_val(0)
, lower_low_val(0), lower_high_val(0)
{}
virtual ~Kd_tree_internal_node() { }