mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
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:
parent
1d2c12e980
commit
ec9e0fed2f
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue