mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00
Fix a bunch of -Wunqualified-std-cast-call warnings from clang 15
This commit is contained in:
parent
96bbb96b35
commit
7aa310ee50
13 changed files with 98 additions and 93 deletions
|
@ -104,7 +104,7 @@ bool CPPCompile::AddGlobal(const string& g, const char* suffix)
|
|||
|
||||
void CPPCompile::RegisterEvent(string ev_name)
|
||||
{
|
||||
body_events[body_name].emplace_back(move(ev_name));
|
||||
body_events[body_name].emplace_back(std::move(ev_name));
|
||||
}
|
||||
|
||||
const string& CPPCompile::IDNameStr(const ID* id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue