remove some implicit convert warnings

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@1275 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Matthias Möller
2015-06-03 18:38:35 +00:00
parent 096b33f863
commit 788e96474f

View File

@@ -167,7 +167,7 @@ void CompositeT<MeshType,RealType>::Tvv4()
typename MeshType::EdgeIter e_it; typename MeshType::EdgeIter e_it;
typename MeshType::VertexIter v_it; typename MeshType::VertexIter v_it;
typename MeshType::Point zero_point(0.0, 0.0, 0.0); 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 // Store number of original edges
n_faces = mesh_.n_faces(); n_faces = mesh_.n_faces();
@@ -225,7 +225,7 @@ void CompositeT<MeshType,RealType>::Tfv()
typename MeshType::FaceFaceIter ff_it; typename MeshType::FaceFaceIter ff_it;
typename MeshType::Point cog; typename MeshType::Point cog;
const typename MeshType::Point zero_point(0.0, 0.0, 0.0); 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 // Store number of original edges
n_faces = mesh_.n_faces(); n_faces = mesh_.n_faces();