diff options
| author | Rusty Wagner <rusty.wagner@gmail.com> | 2025-06-24 17:55:48 -0400 |
|---|---|---|
| committer | Alexander Taylor <alex@vector35.com> | 2025-06-25 18:36:47 -0400 |
| commit | c41f264a1dba68c89b4a224a70e3a5783f7fa879 (patch) | |
| tree | 00bb6e91d86b708bff7265ed7179a6ef2793b7fb /arch/armv7 | |
| parent | b1a7666164a000c5255f90568ed9597b58ce276a (diff) | |
Remove implicit conversions from Confidence to underlying type, these can cause bugs and also issues with C++20
Diffstat (limited to 'arch/armv7')
| -rw-r--r-- | arch/armv7/arch_armv7.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/armv7/arch_armv7.cpp b/arch/armv7/arch_armv7.cpp index 5739a8bd..f27a3fb9 100644 --- a/arch/armv7/arch_armv7.cpp +++ b/arch/armv7/arch_armv7.cpp @@ -2231,7 +2231,7 @@ public: return false; Confidence<Ref<Type>> type = entryFunc->GetType(); - data->DefineImportedFunction(sym, func, type); + data->DefineImportedFunction(sym, func, type.GetValue()); return true; } } |
