From 39bceb093c91e919436360ff37cf66789b4c54f6 Mon Sep 17 00:00:00 2001 From: bryantcurto Date: Fri, 7 Jun 2019 11:57:19 -0400 Subject: [PATCH] Fixed do_intersect() ambiguity. Occurs when compiling with clang --- .../CGAL/Intersections_3/internal/intersection_3_1_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Intersections_3/include/CGAL/Intersections_3/internal/intersection_3_1_impl.h b/Intersections_3/include/CGAL/Intersections_3/internal/intersection_3_1_impl.h index 2112802e019..d0dac100942 100644 --- a/Intersections_3/include/CGAL/Intersections_3/internal/intersection_3_1_impl.h +++ b/Intersections_3/include/CGAL/Intersections_3/internal/intersection_3_1_impl.h @@ -430,7 +430,7 @@ do_intersect(const typename K::Segment_3 &s1, const K & k) { CGAL_precondition(! s1.is_degenerate () && ! s2.is_degenerate () ); - bool b=do_intersect(s1.supporting_line(),s2.supporting_line(),k); + bool b=internal::do_intersect(s1.supporting_line(),s2.supporting_line(),k); if (b) { //supporting_line intersects: points are coplanar