Fixed unsigned signed comparison

This commit is contained in:
Mael Rouxel-Labbé 2017-04-28 10:31:59 +02:00
parent ae19fa592f
commit 883d8a0a15
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ void PQQ(PolygonMesh& pmesh, Mask mask, const NamedParameters& np) {
get_property_map(CGAL::vertex_point, pmesh));
unsigned int step = choose_param(get_param(np, number_of_iterations), 1);
for (int i = 0; i < step; i++)
for (unsigned int i = 0; i < step; i++)
internal::PQQ_1step(pmesh, vpm, mask);
}