Fixed do_intersect() ambiguity.

Occurs when compiling with clang
This commit is contained in:
bryantcurto 2019-06-07 11:57:19 -04:00 committed by GitHub
parent 1d49a7cdb6
commit 39bceb093c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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