diff options
Diffstat (limited to 'src/mongo/db/exec/subplan.h')
-rw-r--r-- | src/mongo/db/exec/subplan.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/exec/subplan.h b/src/mongo/db/exec/subplan.h index 62ac89d6644..f07d8f5815c 100644 --- a/src/mongo/db/exec/subplan.h +++ b/src/mongo/db/exec/subplan.h @@ -132,7 +132,8 @@ private: * a particular $or branch. */ struct BranchPlanningResult { - MONGO_DISALLOW_COPYING(BranchPlanningResult); + BranchPlanningResult(const BranchPlanningResult&) = delete; + BranchPlanningResult& operator=(const BranchPlanningResult&) = delete; public: BranchPlanningResult() {} |