summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/active_shard_collection_registry.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/s/active_shard_collection_registry.h')
-rw-r--r--src/mongo/db/s/active_shard_collection_registry.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mongo/db/s/active_shard_collection_registry.h b/src/mongo/db/s/active_shard_collection_registry.h
index 5da43ed446b..cab710b5ee5 100644
--- a/src/mongo/db/s/active_shard_collection_registry.h
+++ b/src/mongo/db/s/active_shard_collection_registry.h
@@ -31,7 +31,6 @@
#include <boost/optional.hpp>
-#include "mongo/base/disallow_copying.h"
#include "mongo/s/request_types/shard_collection_gen.h"
#include "mongo/stdx/memory.h"
#include "mongo/stdx/mutex.h"
@@ -49,7 +48,8 @@ class StatusWith;
* one instance of this object per shard.
*/
class ActiveShardCollectionRegistry {
- MONGO_DISALLOW_COPYING(ActiveShardCollectionRegistry);
+ ActiveShardCollectionRegistry(const ActiveShardCollectionRegistry&) = delete;
+ ActiveShardCollectionRegistry& operator=(const ActiveShardCollectionRegistry&) = delete;
public:
ActiveShardCollectionRegistry();
@@ -119,7 +119,8 @@ private:
* registerShardCollection method for more details.
*/
class ScopedShardCollection {
- MONGO_DISALLOW_COPYING(ScopedShardCollection);
+ ScopedShardCollection(const ScopedShardCollection&) = delete;
+ ScopedShardCollection& operator=(const ScopedShardCollection&) = delete;
public:
ScopedShardCollection(std::string nss,