From 0f8f34c9d4e1ecdc0d3b49d3ec4ae75f7b0c4cb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Thu, 27 Apr 2017 14:01:58 +0200 Subject: [PATCH] Fixed compilation of add_temporary_points_on_far_sphere() --- Triangulation_3/include/CGAL/Regular_triangulation_3.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Triangulation_3/include/CGAL/Regular_triangulation_3.h b/Triangulation_3/include/CGAL/Regular_triangulation_3.h index 40d205fb6d9..fd109f57781 100644 --- a/Triangulation_3/include/CGAL/Regular_triangulation_3.h +++ b/Triangulation_3/include/CGAL/Regular_triangulation_3.h @@ -243,7 +243,7 @@ namespace CGAL { bbox.xmin() + 0.5*xdelta, bbox.ymin() + 0.5*ydelta, bbox.zmin() + 0.5*zdelta); - Random_points_on_sphere_3 random_point(radius); + Random_points_on_sphere_3 random_point(radius); const int NUM_PSEUDO_INFINITE_VERTICES = static_cast( tbb::task_scheduler_init::default_num_threads() * 3.5); typename Gt::Construct_weighted_point_3 cwp = @@ -277,7 +277,7 @@ namespace CGAL { for (; it_p != it_p_end ; ++it_p) { Locate_type lt; - Cell_handle c; + Cell_handle c, hint; int li, lj; c = locate(*it_p, lt, li, lj, hint);