uint are not a standard type...

This commit is contained in:
Paolo Cignoni 2009-01-07 08:58:00 +00:00
parent 2e7bde9f24
commit 6f533063ae
1 changed files with 1 additions and 1 deletions

View File

@ -614,7 +614,7 @@ static int Open( OpenMeshType &m, const char * filename, Info &oi)
{
assert(m.face.size()==size_t(m.fn));
m.face[i].Alloc(indexedFaces[i].v.size()); // it does not do anything if it is a trimesh
for(uint j=0;j<indexedFaces[i].v.size();++j)
for(unsigned int j=0;j<indexedFaces[i].v.size();++j)
{
m.face[i].V(j)=&(m.vert[indexedFaces[i].v[j]]);
if ( oi.mask & vcg::tri::io::Mask::IOM_WEDGTEXCOORD ) {