diff options
| author | Mason Reed <mason@vector35.com> | 2024-12-03 17:49:11 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-03-19 21:17:34 -0400 |
| commit | 31ef836d222aaa8786d4ac2c36e09e4fd9e02929 (patch) | |
| tree | a114bebf46837d110dbc9e7c560ca52d7348202b /plugins/rtti/rtti.h | |
| parent | 7794bcfa9f8c51442a87f10a3475612dfc4435d8 (diff) | |
Replace bad auto symbol for Itanium RTTI
Diffstat (limited to 'plugins/rtti/rtti.h')
| -rw-r--r-- | plugins/rtti/rtti.h | 2 |
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); |
