summaryrefslogtreecommitdiff
path: root/src/mongo/logger/log_component_settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/logger/log_component_settings.h')
-rw-r--r--src/mongo/logger/log_component_settings.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/logger/log_component_settings.h b/src/mongo/logger/log_component_settings.h
index d945b9e7a71..23440129d54 100644
--- a/src/mongo/logger/log_component_settings.h
+++ b/src/mongo/logger/log_component_settings.h
@@ -29,7 +29,6 @@
#pragma once
-#include "mongo/base/disallow_copying.h"
#include "mongo/logger/log_component.h"
#include "mongo/logger/log_severity.h"
#include "mongo/platform/atomic_word.h"
@@ -44,7 +43,8 @@ namespace logger {
* provide log severities for the other components (up to but not including kNumLogComponents).
*/
class LogComponentSettings {
- MONGO_DISALLOW_COPYING(LogComponentSettings);
+ LogComponentSettings(const LogComponentSettings&) = delete;
+ LogComponentSettings& operator=(const LogComponentSettings&) = delete;
public:
LogComponentSettings();