From 2f63d97acbc9c92a75f4f75e43ebdf152e240919 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Thu, 6 Mar 2025 11:02:42 -0500 Subject: Make the Workflow::Clone name optional and update the docs. --- binaryninjaapi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index ceb42937..a0ad6980 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -10098,11 +10098,11 @@ namespace BinaryNinja { /*! Clone a workflow, copying all Activities and the execution strategy - \param name Name for the new Workflow + \param name If specified, name the new Workflow, otherwise the name is copied from the original \param activity If specified, perform the clone with `activity` as the root \return A new Workflow */ - Ref Clone(const std::string& name, const std::string& activity = ""); + Ref Clone(const std::string& name = "", const std::string& activity = ""); /*! Register an Activity with this Workflow -- cgit v1.3.1