SpatialSort: use std::vector::resize( 0 ) to improve readability.

pull/1258/head
Kim Kulling 2017-05-08 21:57:08 +02:00
parent 65653edf88
commit 186629b372
1 changed files with 1 additions and 1 deletions

View 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;