summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/storage_interface_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/storage_interface_impl.h')
-rw-r--r--src/mongo/db/repl/storage_interface_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/repl/storage_interface_impl.h b/src/mongo/db/repl/storage_interface_impl.h
index a62587f9a6c..24538fed00f 100644
--- a/src/mongo/db/repl/storage_interface_impl.h
+++ b/src/mongo/db/repl/storage_interface_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/base/string_data.h"
@@ -43,7 +42,8 @@ namespace mongo {
namespace repl {
class StorageInterfaceImpl : public StorageInterface {
- MONGO_DISALLOW_COPYING(StorageInterfaceImpl);
+ StorageInterfaceImpl(const StorageInterfaceImpl&) = delete;
+ StorageInterfaceImpl& operator=(const StorageInterfaceImpl&) = delete;
public:
static const char kDefaultRollbackIdNamespace[];