summaryrefslogtreecommitdiff
path: root/src/mongo/tools/bridge_commands.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/tools/bridge_commands.h')
-rw-r--r--src/mongo/tools/bridge_commands.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mongo/tools/bridge_commands.h b/src/mongo/tools/bridge_commands.h
index 5002b697a17..f72c2e37b6a 100644
--- a/src/mongo/tools/bridge_commands.h
+++ b/src/mongo/tools/bridge_commands.h
@@ -28,9 +28,8 @@
#pragma once
-#include <unordered_map>
-
#include "mongo/stdx/mutex.h"
+#include "mongo/stdx/unordered_map.h"
#include "mongo/util/time_support.h"
namespace mongo {
@@ -50,7 +49,7 @@ struct HostSettings {
double loss = 0.0;
};
-using HostSettingsMap = std::unordered_map<HostAndPort, HostSettings>;
+using HostSettingsMap = stdx::unordered_map<HostAndPort, HostSettings>;
class Command {
public: