From c41f264a1dba68c89b4a224a70e3a5783f7fa879 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Tue, 24 Jun 2025 17:55:48 -0400 Subject: Remove implicit conversions from Confidence to underlying type, these can cause bugs and also issues with C++20 --- arch/armv7/arch_armv7.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/armv7/arch_armv7.cpp') 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> type = entryFunc->GetType(); - data->DefineImportedFunction(sym, func, type); + data->DefineImportedFunction(sym, func, type.GetValue()); return true; } } -- cgit v1.3.1