removed harmless gcc warning
This commit is contained in:
parent
be3e74ca6a
commit
8d9d7b9009
|
@ -467,7 +467,7 @@ namespace vcg
|
|||
// Consecutivity is in the space of the index of the polygon.
|
||||
for(int qq=0;qq<3;++qq)
|
||||
{
|
||||
if( (indexTriangulatedVect[j+qq]+1)%indexTriangulatedVect.size() == indexTriangulatedVect[j+(qq+1)%3])
|
||||
if( (indexTriangulatedVect[j+qq]+1)%int(indexTriangulatedVect.size()) == indexTriangulatedVect[j+(qq+1)%3])
|
||||
mesh.face[f+j/3].ClearF(qq);
|
||||
else mesh.face[f+j/3].SetF(qq);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue