summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/delete.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/delete.h')
-rw-r--r--src/mongo/db/exec/delete.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/exec/delete.h b/src/mongo/db/exec/delete.h
index b36067d0bd1..139239d9de0 100644
--- a/src/mongo/db/exec/delete.h
+++ b/src/mongo/db/exec/delete.h
@@ -95,7 +95,8 @@ struct DeleteStageParams {
* had the replication coordinator approve the write).
*/
class DeleteStage final : public RequiresMutableCollectionStage {
- MONGO_DISALLOW_COPYING(DeleteStage);
+ DeleteStage(const DeleteStage&) = delete;
+ DeleteStage& operator=(const DeleteStage&) = delete;
public:
DeleteStage(OperationContext* opCtx,