0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

fix delete on linux

This commit is contained in:
Eliot Horowitz 2009-02-25 07:55:52 -05:00
parent 4c98640678
commit 792a3434f5

View File

@ -171,7 +171,8 @@ namespace mongo {
}
ParallelSortShardedCursor::~ParallelSortShardedCursor(){
delete( _cursors );
delete [] _cursors;
delete [] _nexts;
}
bool ParallelSortShardedCursor::more(){