summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/scatter_gather_runner.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/scatter_gather_runner.h')
-rw-r--r--src/mongo/db/repl/scatter_gather_runner.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/repl/scatter_gather_runner.h b/src/mongo/db/repl/scatter_gather_runner.h
index 5fe7f08b894..4d65e417efb 100644
--- a/src/mongo/db/repl/scatter_gather_runner.h
+++ b/src/mongo/db/repl/scatter_gather_runner.h
@@ -31,7 +31,6 @@
#include <vector>
-#include "mongo/base/disallow_copying.h"
#include "mongo/executor/task_executor.h"
#include "mongo/stdx/functional.h"
#include "mongo/stdx/mutex.h"
@@ -49,7 +48,8 @@ class ScatterGatherAlgorithm;
* Interface of a scatter-gather behavior.
*/
class ScatterGatherRunner {
- MONGO_DISALLOW_COPYING(ScatterGatherRunner);
+ ScatterGatherRunner(const ScatterGatherRunner&) = delete;
+ ScatterGatherRunner& operator=(const ScatterGatherRunner&) = delete;
public:
/**