summaryrefslogtreecommitdiff
path: root/src/buildtool/logging/log_config.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/logging/log_config.hpp')
-rw-r--r--src/buildtool/logging/log_config.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buildtool/logging/log_config.hpp b/src/buildtool/logging/log_config.hpp
index c37fc535..341189ce 100644
--- a/src/buildtool/logging/log_config.hpp
+++ b/src/buildtool/logging/log_config.hpp
@@ -26,10 +26,10 @@
/// The entire class is thread-safe.
class LogConfig {
struct ConfigData {
- std::mutex mutex{};
+ std::mutex mutex;
LogLevel log_limit{LogLevel::Info};
- std::vector<ILogSink::Ptr> sinks{};
- std::vector<LogSinkFactory> factories{};
+ std::vector<ILogSink::Ptr> sinks;
+ std::vector<LogSinkFactory> factories;
};
public: