summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/active_move_primaries_registry.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/s/active_move_primaries_registry.h')
-rw-r--r--src/mongo/db/s/active_move_primaries_registry.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mongo/db/s/active_move_primaries_registry.h b/src/mongo/db/s/active_move_primaries_registry.h
index 544300ec347..8ddd051478e 100644
--- a/src/mongo/db/s/active_move_primaries_registry.h
+++ b/src/mongo/db/s/active_move_primaries_registry.h
@@ -29,7 +29,6 @@
#pragma once
-#include "mongo/base/disallow_copying.h"
#include "mongo/s/request_types/move_primary_gen.h"
#include "mongo/util/concurrency/notification.h"
@@ -43,7 +42,8 @@ class ScopedMovePrimary;
*/
class ActiveMovePrimariesRegistry {
- MONGO_DISALLOW_COPYING(ActiveMovePrimariesRegistry);
+ ActiveMovePrimariesRegistry(const ActiveMovePrimariesRegistry&) = delete;
+ ActiveMovePrimariesRegistry& operator=(const ActiveMovePrimariesRegistry&) = delete;
public:
ActiveMovePrimariesRegistry();
@@ -112,7 +112,8 @@ private:
* registerMovePrimary for more details.
*/
class ScopedMovePrimary {
- MONGO_DISALLOW_COPYING(ScopedMovePrimary);
+ ScopedMovePrimary(const ScopedMovePrimary&) = delete;
+ ScopedMovePrimary& operator=(const ScopedMovePrimary&) = delete;
public:
ScopedMovePrimary(ActiveMovePrimariesRegistry* registry,