From b50c2e8a53344b4efc1f529ea54b379305a17207 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Mon, 25 Nov 2024 11:49:47 -0500 Subject: Rename 'defaultAnalysis' to 'baseAnalysis' in the Workflow system. --- examples/workflows/inliner/inliner.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/workflows/inliner/inliner.cpp') diff --git a/examples/workflows/inliner/inliner.cpp b/examples/workflows/inliner/inliner.cpp index 392935eb..7db6efec 100644 --- a/examples/workflows/inliner/inliner.cpp +++ b/examples/workflows/inliner/inliner.cpp @@ -158,14 +158,14 @@ extern "C" }, inlinerIsValid); - Ref inlinerWorkflow = Workflow::Instance("core.function.defaultAnalysis")->Clone("InlinerWorkflow"); + Ref inlinerWorkflow = Workflow::Instance("core.function.baseAnalysis")->Clone("InlinerWorkflow"); inlinerWorkflow->RegisterActivity(new Activity("extension.functionInliner", &FunctionInliner)); inlinerWorkflow->Insert("core.function.translateTailCalls", "extension.functionInliner"); Workflow::RegisterWorkflow(inlinerWorkflow, R"#({ "title" : "Function Inliner (Example)", - "description" : "This analysis stands in as an example to demonstrate Binary Ninja's extensible analysis APIs. ***Note** this feature is under active development and subject to change without notice.", - "capabilities" : [] + "description" : "This analysis stands in as an example to demonstrate Binary Ninja's extensible analysis APIs.", + "targetType" : "function" })#"); return true; -- cgit v1.3.1