From 9bd443da292057a47eb07043aac13956dd6516ba Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 6 Feb 2019 17:28:38 +0100 Subject: [PATCH] Do not initialize --- Convex_hull_d/include/CGAL/Regular_complex_d.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Convex_hull_d/include/CGAL/Regular_complex_d.h b/Convex_hull_d/include/CGAL/Regular_complex_d.h index edf64a98c9d..0343e48d186 100644 --- a/Convex_hull_d/include/CGAL/Regular_complex_d.h +++ b/Convex_hull_d/include/CGAL/Regular_complex_d.h @@ -85,8 +85,8 @@ class RC_vertex_d public: RC_vertex_d(Simplex_handle s, int i, const Point_d& p) : s_(s), index_(i), point_(p) {} - RC_vertex_d(const Point_d& p) : index_(-42), point_(p), pp(NULL) {} - RC_vertex_d() : s_(), index_(-42), pp(NULL) {} + RC_vertex_d(const Point_d& p) : point_(p), pp(NULL) {} + RC_vertex_d() : s_(), pp(NULL) {} // beware that ass_point was initialized here by nil_point ~RC_vertex_d() {}