mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 00:28:21 +00:00
Use const-reference in plugin::Manager::MetaHookPost for minor performance gain
This commit is contained in:
parent
51f17534d4
commit
0d62ed4783
2 changed files with 2 additions and 2 deletions
|
@ -414,7 +414,7 @@ private:
|
|||
bool ActivateDynamicPluginInternal(const std::string& name, bool ok_if_not_found, std::vector<std::string>* errors);
|
||||
void UpdateInputFiles();
|
||||
void MetaHookPre(HookType hook, const HookArgumentList& args) const;
|
||||
void MetaHookPost(HookType hook, const HookArgumentList& args, HookArgument result) const;
|
||||
void MetaHookPost(HookType hook, const HookArgumentList& args, const HookArgument& result) const;
|
||||
|
||||
// Plugins that were explicitly requested to be activated, but failed to
|
||||
// load at first.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue