Fix warnings

This commit is contained in:
Simon Giraudot 2020-03-19 15:50:22 +01:00
parent 0c23a65028
commit 37a6a4360f
2 changed files with 2 additions and 1 deletions

View File

@ -407,7 +407,7 @@ public:
Point_3_from_sample()), Point_3_from_sample()),
boost::make_transform_iterator (m_samples.end(), boost::make_transform_iterator (m_samples.end(),
Point_3_from_sample())), Point_3_from_sample())),
3); 3, CGAL::parameters::point_map (CGAL::Identity_property_map_no_lvalue<K::Point_3>()));
std::cerr << "Average spacing = " << spacing << std::endl; std::cerr << "Average spacing = " << spacing << std::endl;
} }

View File

@ -105,6 +105,7 @@ namespace CGAL {
} }
Kd_tree_rectangle() Kd_tree_rectangle()
: max_span_coord_(-1)
{} {}