mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
changed function_ingredients struct to FunctionIngredients class with accessors
This commit is contained in:
parent
5718046b96
commit
0c434ca4f8
11 changed files with 63 additions and 53 deletions
|
@ -29,8 +29,8 @@ void CPPCompile::DeclareLambda(const LambdaExpr* l, const ProfileFunc* pf)
|
|||
ASSERT(is_CPP_compilable(pf));
|
||||
|
||||
auto lname = Canonicalize(l->Name().c_str()) + "_lb";
|
||||
auto body = l->Ingredients().body;
|
||||
auto l_id = l->Ingredients().id;
|
||||
auto body = l->Ingredients().Body();
|
||||
auto l_id = l->Ingredients().GetID();
|
||||
auto& ids = l->OuterIDs();
|
||||
|
||||
for ( auto id : ids )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue