summaryrefslogtreecommitdiff
path: root/src/mongo/client/connection_pool.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/client/connection_pool.h')
-rw-r--r--src/mongo/client/connection_pool.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/client/connection_pool.h b/src/mongo/client/connection_pool.h
index d3f6477865a..a359b47bfce 100644
--- a/src/mongo/client/connection_pool.h
+++ b/src/mongo/client/connection_pool.h
@@ -32,16 +32,16 @@
#include "mongo/base/disallow_copying.h"
#include "mongo/client/dbclientinterface.h"
-#include "mongo/platform/unordered_map.h"
#include "mongo/stdx/list.h"
#include "mongo/stdx/mutex.h"
+#include "mongo/stdx/unordered_map.h"
#include "mongo/util/net/hostandport.h"
#include "mongo/util/time_support.h"
namespace mongo {
namespace executor {
class NetworkConnectionHook;
-}
+} // namespace executor
/**
* Represents a pool of connections to a MongoDB server. The pool is synchronized internally
@@ -67,7 +67,7 @@ public:
};
typedef stdx::list<ConnectionInfo> ConnectionList;
- typedef unordered_map<HostAndPort, ConnectionList> HostConnectionMap;
+ typedef stdx::unordered_map<HostAndPort, ConnectionList> HostConnectionMap;
typedef std::map<HostAndPort, Date_t> HostLastUsedMap;
/**