SpatialSort: use std::vector::resize( 0 ) to improve readability.
authorKim Kulling <kim.kulling@goolemail.com>
Mon, 8 May 2017 19:57:08 +0000 (21:57 +0200)
committerKim Kulling <kim.kulling@goolemail.com>
Mon, 8 May 2017 19:57:08 +0000 (21:57 +0200)
code/SpatialSort.cpp

index 3825dc3..a350c07 100644 (file)
@@ -269,7 +269,7 @@ void SpatialSort::FindIdenticalPositions( const aiVector3D& pPosition,
 
     // clear the array in this strange fashion because a simple clear() would also deallocate
     // the array which we want to avoid
-    poResults.erase( poResults.begin(), poResults.end());
+    poResults.resize( 0 );
 
     // do a binary search for the minimal distance to start the iteration there
     unsigned int index = (unsigned int)mPositions.size() / 2;