diff --git a/src/OpenMesh/Tools/Subdivider/Uniform/Composite/CompositeT.cc b/src/OpenMesh/Tools/Subdivider/Uniform/Composite/CompositeT.cc index 6a4bc881..3a0e4e60 100644 --- a/src/OpenMesh/Tools/Subdivider/Uniform/Composite/CompositeT.cc +++ b/src/OpenMesh/Tools/Subdivider/Uniform/Composite/CompositeT.cc @@ -167,7 +167,7 @@ void CompositeT::Tvv4() typename MeshType::EdgeIter e_it; typename MeshType::VertexIter v_it; typename MeshType::Point zero_point(0.0, 0.0, 0.0); - unsigned int n_edges, n_faces, n_vertices, j; + size_t n_edges, n_faces, n_vertices, j; // Store number of original edges n_faces = mesh_.n_faces(); @@ -225,7 +225,7 @@ void CompositeT::Tfv() typename MeshType::FaceFaceIter ff_it; typename MeshType::Point cog; const typename MeshType::Point zero_point(0.0, 0.0, 0.0); - unsigned int n_edges, n_faces, n_vertices, j, valence; + size_t n_edges, n_faces, n_vertices, j, valence; // Store number of original edges n_faces = mesh_.n_faces();