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