From 9d08d4087d2894c044394cb17a93aa12cf79437c Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Fri, 19 Sep 2025 16:40:12 +0200 Subject: [PATCH] missing is_marked --- .../CGAL/Conforming_constrained_Delaunay_triangulation_3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Constrained_triangulation_3/include/CGAL/Conforming_constrained_Delaunay_triangulation_3.h b/Constrained_triangulation_3/include/CGAL/Conforming_constrained_Delaunay_triangulation_3.h index 84d662f8e16..df3b0c64b0b 100644 --- a/Constrained_triangulation_3/include/CGAL/Conforming_constrained_Delaunay_triangulation_3.h +++ b/Constrained_triangulation_3/include/CGAL/Conforming_constrained_Delaunay_triangulation_3.h @@ -2257,7 +2257,7 @@ private: if(facets_of_border.count(Facet{circ, face_index}) > 0) { const auto other_vertex_index = 6 - index_va - index_vb - face_index; const auto other_vertex = circ->vertex(other_vertex_index); - if(other_vertex->ccdt_3_data().is_marked(Vertex_marker::CAVITY)) { + if(is_marked(other_vertex, Vertex_marker::CAVITY)) { vertex_above = circ->vertex(other_vertex_index); break; }