summaryrefslogtreecommitdiff
path: root/plugins/rtti/rtti.h
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2024-12-03 17:49:11 -0500
committerMason Reed <mason@vector35.com>2025-03-19 21:17:34 -0400
commit31ef836d222aaa8786d4ac2c36e09e4fd9e02929 (patch)
treea114bebf46837d110dbc9e7c560ca52d7348202b /plugins/rtti/rtti.h
parent7794bcfa9f8c51442a87f10a3475612dfc4435d8 (diff)
Replace bad auto symbol for Itanium RTTI
Diffstat (limited to 'plugins/rtti/rtti.h')
-rw-r--r--plugins/rtti/rtti.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/rtti/rtti.h b/plugins/rtti/rtti.h
index e53e1dac..9740b68f 100644
--- a/plugins/rtti/rtti.h
+++ b/plugins/rtti/rtti.h
@@ -8,7 +8,7 @@ constexpr int RTTI_CONFIDENCE = 100;
namespace BinaryNinja::RTTI {
std::optional<std::string> DemangleNameMS(BinaryView* view, bool allowMangled, const std::string &mangledName);
- std::optional<std::string> DemangleNameGNU3(BinaryView* view, bool allowMangled, const std::string &mangledName);
+ std::optional<std::string> DemangleNameItanium(BinaryView* view, bool allowMangled, const std::string &mangledName);
std::optional<std::string> DemangleNameLLVM(bool allowMangled, const std::string &mangledName);