From 9e10beda8b62bc56a6932ec256c3efe4bb7029d3 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 3 Jul 2025 11:04:25 +0200 Subject: [PATCH] protect a debug output --- .../include/CGAL/Conforming_Delaunay_triangulation_3.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Constrained_triangulation_3/include/CGAL/Conforming_Delaunay_triangulation_3.h b/Constrained_triangulation_3/include/CGAL/Conforming_Delaunay_triangulation_3.h index e1e6ae46326..a8b4b4edea4 100644 --- a/Constrained_triangulation_3/include/CGAL/Conforming_Delaunay_triangulation_3.h +++ b/Constrained_triangulation_3/include/CGAL/Conforming_Delaunay_triangulation_3.h @@ -772,7 +772,9 @@ protected: std::cerr << "!! The constraint passes through a vertex!\n"; std::cerr << " -> constraint " << display_vert(va) << " " << display_vert(vb) << '\n'; std::cerr << " -> vertex " << display_vert(v) << '\n'; +#if CGAL_DEBUG_CDT_3 debug_dump("bug-through-vertex"); +#endif CGAL_error(); } } break;