summaryrefslogtreecommitdiff
path: root/src/mongo/s/client/shard_connection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/client/shard_connection.cpp')
-rw-r--r--src/mongo/s/client/shard_connection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/s/client/shard_connection.cpp b/src/mongo/s/client/shard_connection.cpp
index 5ac9fe97bd0..e5698ef5f69 100644
--- a/src/mongo/s/client/shard_connection.cpp
+++ b/src/mongo/s/client/shard_connection.cpp
@@ -109,7 +109,7 @@ public:
static ClientConnections* threadInstance() {
if (!_perThread) {
- _perThread = stdx::make_unique<ClientConnections>();
+ _perThread = std::make_unique<ClientConnections>();
}
return _perThread.get();
}