mirror of https://github.com/CGAL/cgal
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:
parent
d13c88710d
commit
3d04ab1e9e
|
|
@ -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 =
|
||||
|
|
|
|||
Loading…
Reference in New Issue