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/md1rom/md1rom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/md1rom/md1rom.cpp') diff --git a/view/md1rom/md1rom.cpp b/view/md1rom/md1rom.cpp index 1d8da293..b302cfb0 100644 --- a/view/md1rom/md1rom.cpp +++ b/view/md1rom/md1rom.cpp @@ -230,7 +230,7 @@ void Md1romView::DefineMd1RomSymbol(BNSymbolType type, const string& name, uint6 if (m_symbolQueue) { - m_symbolQueue->Append(process, [this](Symbol* symbol, Type* type) { + m_symbolQueue->Append(process, [this](Symbol* symbol, const Confidence>& type) { DefineAutoSymbolAndVariableOrFunction(GetDefaultPlatform(), symbol, type); }); } -- cgit v1.3.1