Qualify do_intersect to avoid ambiguous dispatch

This commit is contained in:
Brian Spilsbury 2022-06-04 13:17:02 +09:00
parent af76858555
commit 45c5ef7534
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ do_intersect(const typename K::Segment_3& s1,
{
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