summaryrefslogtreecommitdiff
path: root/src/mongo/executor/async_mock_stream_factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/executor/async_mock_stream_factory.h')
-rw-r--r--src/mongo/executor/async_mock_stream_factory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/executor/async_mock_stream_factory.h b/src/mongo/executor/async_mock_stream_factory.h
index 0c1e33ad3b4..fe9000962b3 100644
--- a/src/mongo/executor/async_mock_stream_factory.h
+++ b/src/mongo/executor/async_mock_stream_factory.h
@@ -32,7 +32,6 @@
#include <cstdint>
#include <memory>
#include <queue>
-#include <unordered_map>
#include "mongo/executor/async_stream_factory_interface.h"
#include "mongo/executor/async_stream_interface.h"
@@ -42,6 +41,7 @@
#include "mongo/stdx/condition_variable.h"
#include "mongo/stdx/functional.h"
#include "mongo/stdx/mutex.h"
+#include "mongo/stdx/unordered_map.h"
#include "mongo/unittest/unittest.h"
#include "mongo/util/net/hostandport.h"
@@ -132,7 +132,7 @@ private:
stdx::mutex _factoryMutex;
stdx::condition_variable _factoryCv;
- std::unordered_map<HostAndPort, MockStream*> _streams;
+ stdx::unordered_map<HostAndPort, MockStream*> _streams;
};
template <int EventType>