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/mips/arch_mips.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'arch/mips/arch_mips.cpp') diff --git a/arch/mips/arch_mips.cpp b/arch/mips/arch_mips.cpp index 0c788133..4cd8b26c 100644 --- a/arch/mips/arch_mips.cpp +++ b/arch/mips/arch_mips.cpp @@ -2726,7 +2726,7 @@ private: DataVariable var; if (data->GetDataVariableAtAddress(extSym.front()->GetAddress(), var)) { - func->ApplyImportedTypes(funcSym, var.type); + func->ApplyImportedTypes(funcSym, var.type.GetValue()); } return true; } @@ -2799,7 +2799,7 @@ private: DataVariable var; if (data->GetDataVariableAtAddress(extSym.front()->GetAddress(), var)) { - func->ApplyImportedTypes(pltSym, var.type); + func->ApplyImportedTypes(pltSym, var.type.GetValue()); } return true; } @@ -2924,7 +2924,7 @@ private: DataVariable var; if (data->GetDataVariableAtAddress(extSym.front()->GetAddress(), var)) { - func->ApplyImportedTypes(funcSym, var.type); + func->ApplyImportedTypes(funcSym, var.type.GetValue()); } return true; } -- cgit v1.3.1