size_t int warning

This commit is contained in:
Max Lyon
2016-12-07 17:33:14 +01:00
parent 5bff49b695
commit 5cd9448a4e

View File

@@ -273,11 +273,11 @@ write(std::ostream& _out, BaseExporter& _be, Options _opt, std::streamsize _prec
//collect Texturevertices from vertices //collect Texturevertices from vertices
if(_opt.check(Options::VertexTexCoord)) if(_opt.check(Options::VertexTexCoord))
{ {
for (int i=0, nF=_be.n_faces(); i<nF; ++i) for (size_t i=0, nF=_be.n_faces(); i<nF; ++i)
{ {
vh = VertexHandle(int(i)); vh = VertexHandle(int(i));
t = _be.texcoord(vh); t = _be.texcoord(vh);
texMap[t] = i; texMap[t] = (int)i;
} }
} }