size_t fixes

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@862 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2013-07-24 08:01:53 +00:00
parent c4dd9cc7b0
commit 0d921e1be2

View File

@@ -358,8 +358,8 @@ size_t McDecimaterT<Mesh>::decimate_constraints_only(float _factor) {
this->set_error_tolerance_factor(_factor); this->set_error_tolerance_factor(_factor);
unsigned int n_collapses(0); unsigned int n_collapses(0);
unsigned int nv = mesh_.n_vertices(); size_t nv = mesh_.n_vertices();
unsigned int nf = mesh_.n_faces(); size_t nf = mesh_.n_faces();
bool lastCollapseIllegal = false; bool lastCollapseIllegal = false;
// number of illegal collapses that occurred in a row // number of illegal collapses that occurred in a row