diff options
| author | Brian Potchik <brian@vector35.com> | 2024-10-24 12:06:09 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2024-10-24 12:06:09 -0400 |
| commit | 6d7f4ac49f5db820c5c468b69efc953cab87307b (patch) | |
| tree | 40339728c6b44eedebe92dd08a0ea797134ae69f /function.cpp | |
| parent | 45955fccf9d0a5e512b3a4da6ac91bf0057ae58c (diff) | |
Initial implementation of the module-level analysis workflow.
Diffstat (limited to 'function.cpp')
| -rw-r--r-- | function.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/function.cpp b/function.cpp index ab441193..433bdea1 100644 --- a/function.cpp +++ b/function.cpp @@ -2483,12 +2483,12 @@ void Function::MarkCallerUpdatesRequired(BNFunctionUpdateType type) } -Ref<Workflow> Function::GetWorkflow() const +Ref<Workflow> Function::GetWorkflow() { BNWorkflow* workflow = BNGetWorkflowForFunction(m_object); if (!workflow) return nullptr; - return new Workflow(workflow); + return new Workflow(workflow, this); } |
