diff options
| author | Glenn Smith <glenn@vector35.com> | 2023-02-08 17:09:50 -0500 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2023-02-08 17:09:50 -0500 |
| commit | 3738692743109088305231270834273092163446 (patch) | |
| tree | 169499b51ea40a329a4828bc07881e1719735e98 | |
| parent | ec195e9aa57ce64d50192c4812e2ac0f02037add (diff) | |
Remove default param in C api function
It breaks BinExport's header parser
| -rw-r--r-- | binaryninjacore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index 6486f657..153d1c78 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -3819,7 +3819,7 @@ extern "C" BINARYNINJACOREAPI BNLanguageRepresentationFunction* BNGetFunctionLanguageRepresentation(BNFunction* func); BINARYNINJACOREAPI BNLanguageRepresentationFunction* BNGetFunctionLanguageRepresentationIfAvailable(BNFunction* func); - BINARYNINJACOREAPI BNDataBuffer* BNGetConstantData(BNFunction* func, BNRegisterValueType state, uint64_t value, size_t size = 0); + BINARYNINJACOREAPI BNDataBuffer* BNGetConstantData(BNFunction* func, BNRegisterValueType state, uint64_t value, size_t size); BINARYNINJACOREAPI BNRegisterValue BNGetRegisterValueAtInstruction( BNFunction* func, BNArchitecture* arch, uint64_t addr, uint32_t reg); |
