summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/plan_cache_indexability.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/query/plan_cache_indexability.h')
-rw-r--r--src/mongo/db/query/plan_cache_indexability.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/query/plan_cache_indexability.h b/src/mongo/db/query/plan_cache_indexability.h
index c38c3dd2d05..5c78dabd3d7 100644
--- a/src/mongo/db/query/plan_cache_indexability.h
+++ b/src/mongo/db/query/plan_cache_indexability.h
@@ -31,7 +31,6 @@
#include <vector>
-#include "mongo/base/disallow_copying.h"
#include "mongo/db/exec/projection_exec_agg.h"
#include "mongo/stdx/functional.h"
#include "mongo/util/string_map.h"
@@ -82,7 +81,8 @@ private:
* expressions based on the data values in the expression.
*/
class PlanCacheIndexabilityState {
- MONGO_DISALLOW_COPYING(PlanCacheIndexabilityState);
+ PlanCacheIndexabilityState(const PlanCacheIndexabilityState&) = delete;
+ PlanCacheIndexabilityState& operator=(const PlanCacheIndexabilityState&) = delete;
public:
PlanCacheIndexabilityState() = default;