summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/collection_bulk_loader_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/collection_bulk_loader_impl.h')
-rw-r--r--src/mongo/db/repl/collection_bulk_loader_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/repl/collection_bulk_loader_impl.h b/src/mongo/db/repl/collection_bulk_loader_impl.h
index 880bcc2d768..5e03fcbda5d 100644
--- a/src/mongo/db/repl/collection_bulk_loader_impl.h
+++ b/src/mongo/db/repl/collection_bulk_loader_impl.h
@@ -30,7 +30,6 @@
#pragma once
-#include "mongo/base/disallow_copying.h"
#include "mongo/base/status.h"
#include "mongo/base/status_with.h"
#include "mongo/bson/bsonobj.h"
@@ -49,7 +48,8 @@ namespace repl {
* Note: Call commit when done inserting documents.
*/
class CollectionBulkLoaderImpl : public CollectionBulkLoader {
- MONGO_DISALLOW_COPYING(CollectionBulkLoaderImpl);
+ CollectionBulkLoaderImpl(const CollectionBulkLoaderImpl&) = delete;
+ CollectionBulkLoaderImpl& operator=(const CollectionBulkLoaderImpl&) = delete;
public:
struct Stats {