summaryrefslogtreecommitdiff
path: root/src/mongo/util/background.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/background.h')
-rw-r--r--src/mongo/util/background.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/util/background.h b/src/mongo/util/background.h
index aab4099b483..81c5ecb07c4 100644
--- a/src/mongo/util/background.h
+++ b/src/mongo/util/background.h
@@ -33,7 +33,6 @@
#include <string>
#include <vector>
-#include "mongo/base/disallow_copying.h"
#include "mongo/base/status.h"
namespace mongo {
@@ -55,7 +54,8 @@ namespace mongo {
*/
class BackgroundJob {
- MONGO_DISALLOW_COPYING(BackgroundJob);
+ BackgroundJob(const BackgroundJob&) = delete;
+ BackgroundJob& operator=(const BackgroundJob&) = delete;
protected:
/**