summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/kv/kv_storage_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/kv/kv_storage_engine.cpp')
-rw-r--r--src/mongo/db/storage/kv/kv_storage_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/storage/kv/kv_storage_engine.cpp b/src/mongo/db/storage/kv/kv_storage_engine.cpp
index 902a242645d..a09d4c7a743 100644
--- a/src/mongo/db/storage/kv/kv_storage_engine.cpp
+++ b/src/mongo/db/storage/kv/kv_storage_engine.cpp
@@ -578,7 +578,7 @@ Status KVStorageEngine::_dropCollectionsNoTimestamp(OperationContext* opCtx,
}
// Ensure the method exits with the same "commit timestamp" state that it was called with.
- auto addCommitTimestamp = MakeGuard([&opCtx, commitTs] {
+ auto addCommitTimestamp = makeGuard([&opCtx, commitTs] {
if (!commitTs.isNull()) {
opCtx->recoveryUnit()->setCommitTimestamp(commitTs);
}