summaryrefslogtreecommitdiff
path: root/src/mongo/db/catalog/collection_impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/catalog/collection_impl.cpp')
-rw-r--r--src/mongo/db/catalog/collection_impl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/catalog/collection_impl.cpp b/src/mongo/db/catalog/collection_impl.cpp
index 6052174f5ff..4356a9f2dfc 100644
--- a/src/mongo/db/catalog/collection_impl.cpp
+++ b/src/mongo/db/catalog/collection_impl.cpp
@@ -206,7 +206,7 @@ CollectionImpl::CollectionImpl(OperationContext* opCtx,
_indexCatalog(
std::make_unique<IndexCatalogImpl>(this, getCatalogEntry()->getMaxAllowedIndexes())),
_cappedNotifier(_recordStore && _recordStore->isCapped()
- ? stdx::make_unique<CappedInsertNotifier>()
+ ? std::make_unique<CappedInsertNotifier>()
: nullptr) {
if (isCapped())
_recordStore->setCappedCallback(this);
@@ -1229,7 +1229,7 @@ void _reportValidationResults(OperationContext* opCtx,
std::unique_ptr<BSONObjBuilder> indexDetails;
if (level == kValidateFull) {
- indexDetails = stdx::make_unique<BSONObjBuilder>();
+ indexDetails = std::make_unique<BSONObjBuilder>();
}
// Report index validation results.