From ec9e0fed2f6b7c95ff9ec1fa6bc3ca334ebe83c9 Mon Sep 17 00:00:00 2001 From: Arne Welzel Date: Mon, 18 Jul 2022 09:28:39 +0200 Subject: [PATCH] DebugLogger: "auto const" to "const auto" This was pointed out in a separate PR so fixing the occurrence I had managed to sneak in already. --- src/DebugLogger.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DebugLogger.cc b/src/DebugLogger.cc index 49b0205efe..4ff950c377 100644 --- a/src/DebugLogger.cc +++ b/src/DebugLogger.cc @@ -152,7 +152,7 @@ bool DebugLogger::CheckStreams(const std::set& plugin_names) for ( const auto& p : plugin_names ) available_plugin_streams.insert(PluginStreamName(p)); - for ( auto const& stream : enabled_streams ) + for ( const auto& stream : enabled_streams ) { if ( ! util::starts_with(stream, "plugin-") ) continue;