summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/balancer/cluster_statistics.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/s/balancer/cluster_statistics.h')
-rw-r--r--src/mongo/db/s/balancer/cluster_statistics.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/s/balancer/cluster_statistics.h b/src/mongo/db/s/balancer/cluster_statistics.h
index 4531d496403..32f6cb9f7c5 100644
--- a/src/mongo/db/s/balancer/cluster_statistics.h
+++ b/src/mongo/db/s/balancer/cluster_statistics.h
@@ -34,7 +34,6 @@
#include <string>
#include <vector>
-#include "mongo/base/disallow_copying.h"
#include "mongo/s/client/shard.h"
namespace mongo {
@@ -50,7 +49,8 @@ class StatusWith;
* the statistics collection. There should be one instance of this object per service context.
*/
class ClusterStatistics {
- MONGO_DISALLOW_COPYING(ClusterStatistics);
+ ClusterStatistics(const ClusterStatistics&) = delete;
+ ClusterStatistics& operator=(const ClusterStatistics&) = delete;
public:
/**