mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 05:58:20 +00:00
Move IntrusivePtr and utility methods to the zeek namespace
This commit is contained in:
parent
4668378d91
commit
9364e6a5b7
255 changed files with 3761 additions and 3730 deletions
|
@ -1,5 +1,4 @@
|
|||
#include "ZeekArgs.h"
|
||||
#include "IntrusivePtr.h"
|
||||
#include "Val.h"
|
||||
|
||||
zeek::Args zeek::val_list_to_args(const val_list& vl)
|
||||
|
@ -8,8 +7,7 @@ zeek::Args zeek::val_list_to_args(const val_list& vl)
|
|||
rval.reserve(vl.length());
|
||||
|
||||
for ( auto& v : vl )
|
||||
rval.emplace_back(AdoptRef{}, v);
|
||||
rval.emplace_back(zeek::AdoptRef{}, v);
|
||||
|
||||
return rval;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue