mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00
Fix clang-tidy performance-move-const-argument warnings (moving const variables)
This commit is contained in:
parent
6196950567
commit
144a3dee3a
9 changed files with 13 additions and 12 deletions
|
@ -317,7 +317,7 @@ void Manager::ActivateDynamicPlugin(const std::string& name) {
|
|||
UpdateInputFiles();
|
||||
else
|
||||
// Reschedule for another attempt later.
|
||||
requested_plugins.insert(std::move(name));
|
||||
requested_plugins.insert(name);
|
||||
}
|
||||
|
||||
void Manager::ActivateDynamicPlugins(bool all) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue