mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
fixup! shift much of the internal use of ID* identifier pointers over to IDPtr objects
This commit is contained in:
parent
7397dc6568
commit
a6f9d69c91
7 changed files with 12 additions and 12 deletions
|
@ -420,7 +420,7 @@ ExprPtr Inliner::DoInline(ScriptFuncPtr sf, StmtPtr body, ListExprPtr args, Scop
|
|||
for ( int i = 0; i < nparam; ++i ) {
|
||||
auto& vi = vars[i];
|
||||
params.emplace_back(vi);
|
||||
param_is_modified.emplace_back((pf->Assignees().contains(vi.get())));
|
||||
param_is_modified.emplace_back((pf->Assignees().contains(vi)));
|
||||
}
|
||||
|
||||
// Recursively inline the body. This is safe to do because we've
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue