Browse Source

prefer prefix ++/-- operators for non-primitive types

escherstair 6 years ago
parent
commit
c1d4ed7873
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/AMF/AMFImporter_Postprocess.cpp

+ 1 - 1
code/AMF/AMFImporter_Postprocess.cpp

@@ -334,7 +334,7 @@ void AMFImporter::PostprocessHelper_SplitFacesByTextureID(std::list<SComplexFace
 			{
 				auto it_old = it;
 
-				it++;
+				++it;
 				face_list_cur.push_back(*it_old);
 				pInputList.erase(it_old);
 			}