summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/active_migrations_registry.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/s/active_migrations_registry.h')
-rw-r--r--src/mongo/db/s/active_migrations_registry.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/mongo/db/s/active_migrations_registry.h b/src/mongo/db/s/active_migrations_registry.h
index 6c62ab2b30d..d2e3f4b2ad0 100644
--- a/src/mongo/db/s/active_migrations_registry.h
+++ b/src/mongo/db/s/active_migrations_registry.h
@@ -31,7 +31,6 @@
#include <boost/optional.hpp>
-#include "mongo/base/disallow_copying.h"
#include "mongo/db/s/migration_session_id.h"
#include "mongo/s/request_types/move_chunk_request.h"
#include "mongo/stdx/memory.h"
@@ -51,7 +50,8 @@ class StatusWith;
* to only one per shard. There is only one instance of this object per shard.
*/
class ActiveMigrationsRegistry {
- MONGO_DISALLOW_COPYING(ActiveMigrationsRegistry);
+ ActiveMigrationsRegistry(const ActiveMigrationsRegistry&) = delete;
+ ActiveMigrationsRegistry& operator=(const ActiveMigrationsRegistry&) = delete;
public:
ActiveMigrationsRegistry();
@@ -167,7 +167,8 @@ private:
* registerDonateChunk method for more details.
*/
class ScopedDonateChunk {
- MONGO_DISALLOW_COPYING(ScopedDonateChunk);
+ ScopedDonateChunk(const ScopedDonateChunk&) = delete;
+ ScopedDonateChunk& operator=(const ScopedDonateChunk&) = delete;
public:
ScopedDonateChunk(ActiveMigrationsRegistry* registry,
@@ -220,7 +221,8 @@ private:
* registry.
*/
class ScopedReceiveChunk {
- MONGO_DISALLOW_COPYING(ScopedReceiveChunk);
+ ScopedReceiveChunk(const ScopedReceiveChunk&) = delete;
+ ScopedReceiveChunk& operator=(const ScopedReceiveChunk&) = delete;
public:
ScopedReceiveChunk(ActiveMigrationsRegistry* registry);