summaryrefslogtreecommitdiff
path: root/src/mongo/db/catalog/collection_info_cache_impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/catalog/collection_info_cache_impl.cpp')
-rw-r--r--src/mongo/db/catalog/collection_info_cache_impl.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mongo/db/catalog/collection_info_cache_impl.cpp b/src/mongo/db/catalog/collection_info_cache_impl.cpp
index 36a5f8acf10..f08c5e3bbb1 100644
--- a/src/mongo/db/catalog/collection_info_cache_impl.cpp
+++ b/src/mongo/db/catalog/collection_info_cache_impl.cpp
@@ -33,6 +33,8 @@
#include "mongo/db/catalog/collection_info_cache_impl.h"
+#include <memory>
+
#include "mongo/db/catalog/collection.h"
#include "mongo/db/catalog/index_catalog.h"
#include "mongo/db/concurrency/d_concurrency.h"
@@ -45,7 +47,6 @@
#include "mongo/db/query/planner_ixselect.h"
#include "mongo/db/service_context.h"
#include "mongo/db/ttl_collection_cache.h"
-#include "mongo/stdx/memory.h"
#include "mongo/util/clock_source.h"
#include "mongo/util/log.h"
@@ -55,8 +56,8 @@ CollectionInfoCacheImpl::CollectionInfoCacheImpl(Collection* collection, const N
: _collection(collection),
_ns(ns),
_keysComputed(false),
- _planCache(stdx::make_unique<PlanCache>(ns.ns())),
- _querySettings(stdx::make_unique<QuerySettings>()),
+ _planCache(std::make_unique<PlanCache>(ns.ns())),
+ _querySettings(std::make_unique<QuerySettings>()),
_indexUsageTracker(getGlobalServiceContext()->getPreciseClockSource()) {}
CollectionInfoCacheImpl::~CollectionInfoCacheImpl() {