mirror of https://github.com/CGAL/cgal
Fix max for windows
This commit is contained in:
parent
5b2f55c96c
commit
d18609cb28
|
|
@ -327,7 +327,7 @@ void orient_scanline (Iterator begin, Iterator end,
|
||||||
const Point_3& p = get (point_map, *it);
|
const Point_3& p = get (point_map, *it);
|
||||||
mean_x += p.x();
|
mean_x += p.x();
|
||||||
mean_y += p.y();
|
mean_y += p.y();
|
||||||
max_z = (std::max(max_z, p.z()));
|
max_z = (std::max)(max_z, p.z());
|
||||||
++ nb;
|
++ nb;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue