mirror of https://github.com/CGAL/cgal
Fixed unsigned signed comparison
This commit is contained in:
parent
ae19fa592f
commit
883d8a0a15
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue