From ecf72f5db2ed47afc1b61d0f7b41a4ba82700493 Mon Sep 17 00:00:00 2001 From: Daniel Russel Date: Mon, 5 Jan 2009 19:45:21 +0000 Subject: [PATCH] fix bad conversion on push back on some platforms --- .../CGAL/Kinetic/internal/Delaunay_triangulation_base_3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kinetic_data_structures/include/CGAL/Kinetic/internal/Delaunay_triangulation_base_3.h b/Kinetic_data_structures/include/CGAL/Kinetic/internal/Delaunay_triangulation_base_3.h index f908a7b7dc5..0a0b4eace46 100644 --- a/Kinetic_data_structures/include/CGAL/Kinetic/internal/Delaunay_triangulation_base_3.h +++ b/Kinetic_data_structures/include/CGAL/Kinetic/internal/Delaunay_triangulation_base_3.h @@ -817,7 +817,7 @@ public: CGAL_precondition(k != Point_key()); unsigned int bin= k.index(); while (vhs_.size() <= bin) { - vhs_.push_back(NULL); + vhs_.push_back(Vertex_handle(NULL)); } /*if (vhs_.size() <=bin){ vhs_.resize(bin+1);