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.
This commit is contained in:
Arne Welzel 2022-07-18 09:28:39 +02:00
parent 1d2c12e980
commit ec9e0fed2f

View file

@ -152,7 +152,7 @@ bool DebugLogger::CheckStreams(const std::set<std::string>& 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;