mirror of https://github.com/CGAL/cgal
fix min/max problem
This commit is contained in:
parent
7b073e29e5
commit
cd95c341da
|
|
@ -80,7 +80,7 @@ namespace CGAL_MINIBALL_NAMESPACE {
|
|||
}
|
||||
|
||||
// compute maxradius[m]:
|
||||
maxradius[m] = std::max(maxradius[m-1],t.radius(*b[m]));
|
||||
maxradius[m] = (std::max)(maxradius[m-1],t.radius(*b[m]));
|
||||
|
||||
// calculate delta[m], eps[m] and phi[m] (by definition):
|
||||
const FT t1 = t.radius(*b[0]) - t.radius(*b[m]),
|
||||
|
|
|
|||
Loading…
Reference in New Issue