type conversion

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@880 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Matthias Möller
2013-07-26 15:49:14 +00:00
parent e3294fae63
commit bdf48be7fe
2 changed files with 2 additions and 2 deletions

View File

@@ -641,7 +641,7 @@ bool _OFFReader_::can_u_read(std::istream& _is) const
_is.getline(line, LINE_LEN);
p = line;
size_t remainingChars = _is.gcount();
std::streamsize remainingChars = _is.gcount();
bool vertexDimensionTooHigh = false;

View File

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