mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 07:08:19 +00:00
update script-to-C++ compilation for new record constructor internals
This commit is contained in:
parent
e7412e257f
commit
a1324a882d
3 changed files with 39 additions and 2 deletions
|
@ -140,6 +140,10 @@ extern TableValPtr table_constructor__CPP(std::vector<ValPtr> indices, std::vect
|
|||
// assigned to the corresponding elements of the given vector of values.
|
||||
extern RecordValPtr record_constructor__CPP(std::vector<ValPtr> vals, RecordTypePtr t);
|
||||
|
||||
// Same, but with a map when using a named constructor.
|
||||
extern RecordValPtr record_constructor_map__CPP(std::vector<ValPtr> vals, std::vector<int> map,
|
||||
RecordTypePtr t);
|
||||
|
||||
// Constructs a vector of the given type, populated with the given values.
|
||||
extern VectorValPtr vector_constructor__CPP(std::vector<ValPtr> vals, VectorTypePtr t);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue