Fixed more size_t warnings

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@559 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2012-03-20 09:32:02 +00:00
parent 118202c476
commit 704fffc423
3 changed files with 11 additions and 6 deletions

View File

@@ -892,7 +892,7 @@ bool _PLYReader_::can_u_read(std::istream& _is) const {
return false;
}
unsigned int streamPos = _is.tellg();
size_t streamPos = _is.tellg();
_is >> keyword;
while (keyword != "end_header") {