summaryrefslogtreecommitdiff
path: root/src/mongo/s/catalog/dist_lock_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/catalog/dist_lock_manager.h')
-rw-r--r--src/mongo/s/catalog/dist_lock_manager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/s/catalog/dist_lock_manager.h b/src/mongo/s/catalog/dist_lock_manager.h
index 58941efeb1c..97a63a8f096 100644
--- a/src/mongo/s/catalog/dist_lock_manager.h
+++ b/src/mongo/s/catalog/dist_lock_manager.h
@@ -29,7 +29,6 @@
#pragma once
-#include "mongo/base/disallow_copying.h"
#include "mongo/base/string_data.h"
#include "mongo/bson/oid.h"
#include "mongo/stdx/chrono.h"
@@ -74,7 +73,8 @@ public:
* RAII type for distributed lock. Not meant to be shared across multiple threads.
*/
class ScopedDistLock {
- MONGO_DISALLOW_COPYING(ScopedDistLock);
+ ScopedDistLock(const ScopedDistLock&) = delete;
+ ScopedDistLock& operator=(const ScopedDistLock&) = delete;
public:
ScopedDistLock(OperationContext* opCtx,