type conversion
git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@880 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
@@ -641,7 +641,7 @@ bool _OFFReader_::can_u_read(std::istream& _is) const
|
|||||||
_is.getline(line, LINE_LEN);
|
_is.getline(line, LINE_LEN);
|
||||||
p = line;
|
p = line;
|
||||||
|
|
||||||
size_t remainingChars = _is.gcount();
|
std::streamsize remainingChars = _is.gcount();
|
||||||
|
|
||||||
bool vertexDimensionTooHigh = false;
|
bool vertexDimensionTooHigh = false;
|
||||||
|
|
||||||
|
|||||||
@@ -901,7 +901,7 @@ bool _PLYReader_::can_u_read(std::istream& _is) const {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t streamPos = _is.tellg();
|
std::streamoff streamPos = _is.tellg();
|
||||||
_is >> keyword;
|
_is >> keyword;
|
||||||
while (keyword != "end_header") {
|
while (keyword != "end_header") {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user