Explicitely use CGAL::sign This only fixes some compilation errors, but not the runtime errors of AABB_tree for VC++

This commit is contained in:
Andreas Fabri 2021-08-13 10:27:36 +01:00
parent d13c88710d
commit 3d04ab1e9e
1 changed files with 1 additions and 1 deletions

View File

@ -381,7 +381,7 @@ namespace internal {
const FT& c_alpha,
const FT& c_beta) -> Uncertain<Sign>
{
return sign(- c_alpha * alpha + c_beta * beta);
return CGAL::sign(- c_alpha * alpha + c_beta * beta);
};
std::array< std::array<FT, 3>, 3> triangle =