summaryrefslogtreecommitdiff
path: root/src/mongo/util/queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/queue.h')
-rw-r--r--src/mongo/util/queue.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mongo/util/queue.h b/src/mongo/util/queue.h
index ee0caf01ece..176e719cfdf 100644
--- a/src/mongo/util/queue.h
+++ b/src/mongo/util/queue.h
@@ -107,11 +107,6 @@ public:
}
}
- void pushBlocking(const T& t) {
- std::vector<T> vec{t};
- pushAllBlocking(vec.begin(), vec.end());
- }
-
bool empty() const {
stdx::lock_guard<Latch> lk(_lock);
return _queue.empty();