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 --- view/macho/machoview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/macho/machoview.cpp') diff --git a/view/macho/machoview.cpp b/view/macho/machoview.cpp index 26839c93..3d8b0186 100644 --- a/view/macho/machoview.cpp +++ b/view/macho/machoview.cpp @@ -2478,7 +2478,7 @@ Ref MachoView::DefineMachoSymbol( if (deferred) { - m_symbolQueue->Append(process, [this](Symbol* symbol, Type* type) { + m_symbolQueue->Append(process, [this](Symbol* symbol, const Confidence>& type) { DefineAutoSymbolAndVariableOrFunction(GetDefaultPlatform(), symbol, type); }); return nullptr; -- cgit v1.3.1