summaryrefslogtreecommitdiff
path: root/src/mongo/s/commands/cluster_plan_cache_cmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/commands/cluster_plan_cache_cmd.cpp')
-rw-r--r--src/mongo/s/commands/cluster_plan_cache_cmd.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/s/commands/cluster_plan_cache_cmd.cpp b/src/mongo/s/commands/cluster_plan_cache_cmd.cpp
index 55f7de06db8..79a77f5b956 100644
--- a/src/mongo/s/commands/cluster_plan_cache_cmd.cpp
+++ b/src/mongo/s/commands/cluster_plan_cache_cmd.cpp
@@ -50,7 +50,8 @@ using std::vector;
* forwarding the commands to all shards and combining the results.
*/
class ClusterPlanCacheCmd : public BasicCommand {
- MONGO_DISALLOW_COPYING(ClusterPlanCacheCmd);
+ ClusterPlanCacheCmd(const ClusterPlanCacheCmd&) = delete;
+ ClusterPlanCacheCmd& operator=(const ClusterPlanCacheCmd&) = delete;
public:
virtual ~ClusterPlanCacheCmd() {}