bugfix : fix level 4 compiler warnings for Visual studio 2012.

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1323 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
This commit is contained in:
kimmi
2012-10-27 19:41:56 +00:00
parent 2a580c5518
commit 39ae26bfd8
3 changed files with 8 additions and 8 deletions

View File

@@ -203,7 +203,7 @@ void STLImporter::LoadASCIIFile()
pMesh->mNormals = new aiVector3D[pMesh->mNumVertices];
unsigned int curFace = 0, curVertex = 3;
while (true)
for ( ;; )
{
// go to the next token
if(!SkipSpacesAndLineEnd(&sz))