From 3d04ab1e9ebfa6c84d13724a8efc6bbe1d8ed5db Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 13 Aug 2021 10:27:36 +0100 Subject: [PATCH] Explicitely use CGAL::sign This only fixes some compilation errors, but not the runtime errors of AABB_tree for VC++ --- .../Intersections_3/internal/Bbox_3_Triangle_3_do_intersect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Intersections_3/include/CGAL/Intersections_3/internal/Bbox_3_Triangle_3_do_intersect.h b/Intersections_3/include/CGAL/Intersections_3/internal/Bbox_3_Triangle_3_do_intersect.h index a8bb60ff3a2..9cff1b4b690 100644 --- a/Intersections_3/include/CGAL/Intersections_3/internal/Bbox_3_Triangle_3_do_intersect.h +++ b/Intersections_3/include/CGAL/Intersections_3/internal/Bbox_3_Triangle_3_do_intersect.h @@ -381,7 +381,7 @@ namespace internal { const FT& c_alpha, const FT& c_beta) -> Uncertain { - return sign(- c_alpha * alpha + c_beta * beta); + return CGAL::sign(- c_alpha * alpha + c_beta * beta); }; std::array< std::array, 3> triangle =