From 048dc6323f7d66154e4e4e4c3e5f47e61e1501f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Wed, 3 May 2017 12:45:46 +0200 Subject: [PATCH] SDG vertex base must define a Point type to satisfy TriangulationVertexBase_2 --- .../include/CGAL/Segment_Delaunay_graph_vertex_base_2.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Segment_Delaunay_graph_2/include/CGAL/Segment_Delaunay_graph_vertex_base_2.h b/Segment_Delaunay_graph_2/include/CGAL/Segment_Delaunay_graph_vertex_base_2.h index 25df57e4856..d823827cfbf 100644 --- a/Segment_Delaunay_graph_2/include/CGAL/Segment_Delaunay_graph_vertex_base_2.h +++ b/Segment_Delaunay_graph_2/include/CGAL/Segment_Delaunay_graph_vertex_base_2.h @@ -50,6 +50,7 @@ public: //------ typedef STraits Storage_traits; typedef typename Storage_traits::Geom_traits Geom_traits; + typedef typename Geom_traits::Point_2 Point; typedef typename Geom_traits::Site_2 Site_2; typedef typename Storage_traits::Storage_site_2 Storage_site_2; typedef D_S Data_structure;