summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2025-07-12 21:45:43 -0400
committerGlenn Smith <glenn@vector35.com>2025-07-12 22:07:24 -0400
commit6592214139290634550860697116801883131153 (patch)
tree0ada0a799ffed83a7253cfdaf0c40f6c8b013d6a /binaryninjaapi.h
parent8143954882881079807041861702046354507957 (diff)
Allow constructing MLILFunction with null LLILFunction/Function
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index 27564dc1..c15cf24d 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -13698,7 +13698,7 @@ namespace BinaryNinja {
BNFreeMediumLevelILFunction>
{
public:
- MediumLevelILFunction(Architecture* arch, Function* func, LowLevelILFunction* lowLevelIL);
+ MediumLevelILFunction(Architecture* arch, Function* func = nullptr, LowLevelILFunction* lowLevelIL = nullptr);
MediumLevelILFunction(BNMediumLevelILFunction* func);
Ref<Function> GetFunction() const;