From 428e47ebb6a9ff98f1064c46fb3c0cd3406439b9 Mon Sep 17 00:00:00 2001 From: Simon Giraudot Date: Thu, 23 Apr 2020 13:26:16 +0200 Subject: [PATCH] Fix bbox initialization --- .../include/CGAL/edge_aware_upsample_point_set.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Point_set_processing_3/include/CGAL/edge_aware_upsample_point_set.h b/Point_set_processing_3/include/CGAL/edge_aware_upsample_point_set.h index 09dbfce95bf..c76c2ae065e 100644 --- a/Point_set_processing_3/include/CGAL/edge_aware_upsample_point_set.h +++ b/Point_set_processing_3/include/CGAL/edge_aware_upsample_point_set.h @@ -388,7 +388,7 @@ edge_aware_upsample_point_set( // copy rich point set std::vector rich_point_set(number_of_input); - CGAL::Bbox_3 bbox(0., 0., 0., 0., 0., 0.); + CGAL::Bbox_3 bbox; typename PointRange::const_iterator it = begin; // point iterator for(unsigned int i = 0; it != end; ++it, ++i)