summaryrefslogtreecommitdiff
path: root/src/mongo/db/range_deleter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/range_deleter.cpp')
-rw-r--r--src/mongo/db/range_deleter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/range_deleter.cpp b/src/mongo/db/range_deleter.cpp
index 02a2dc02da9..28e8ab08e94 100644
--- a/src/mongo/db/range_deleter.cpp
+++ b/src/mongo/db/range_deleter.cpp
@@ -46,6 +46,7 @@
#include "mongo/util/timer.h"
using std::auto_ptr;
+using std::endl;
using std::set;
using std::pair;
using std::string;
@@ -413,7 +414,7 @@ namespace {
stats->reserve(kDeleteJobsHistory);
scoped_lock sl(_statsHistoryMutex);
- for (deque<DeleteJobStats*>::const_iterator it = _statsHistory.begin();
+ for (std::deque<DeleteJobStats*>::const_iterator it = _statsHistory.begin();
it != _statsHistory.end(); ++it) {
stats->push_back(new DeleteJobStats(**it));
}