mirror of https://github.com/CGAL/cgal
compare() -> CGAL::compare() so that it also works with Leda
This commit is contained in:
parent
9473da27f8
commit
2849b3b785
|
|
@ -346,7 +346,7 @@ compare_quotients(const NT& xnum, const NT& xden,
|
|||
int msign = sign(xden) * sign(yden);
|
||||
NT leftop = NT(xnum * yden * msign);
|
||||
NT rightop = NT(ynum * xden * msign);
|
||||
return compare(leftop, rightop);
|
||||
return CGAL::compare(leftop, rightop);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue