Fix max for windows

This commit is contained in:
Simon Giraudot 2020-11-04 11:06:12 +01:00
parent 5b2f55c96c
commit d18609cb28
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ void orient_scanline (Iterator begin, Iterator end,
const Point_3& p = get (point_map, *it);
mean_x += p.x();
mean_y += p.y();
max_z = (std::max(max_z, p.z()));
max_z = (std::max)(max_z, p.z());
++ nb;
}