| 5 | |
| 6 | |
| 7 | std::optional<std::string> RTTI::DemangleNameMS(BinaryView* view, bool allowMangled, const std::string &mangledName) |
| 8 | { |
| 9 | QualifiedName demangledName = {}; |
| 10 | Ref<Type> outType = {}; |
| 11 | if (!DemangleMS(view->GetDefaultArchitecture(), mangledName, outType, demangledName, true)) |
| 12 | return DemangleNameLLVM(allowMangled, mangledName); |
| 13 | return demangledName.GetString(); |
| 14 | } |
| 15 | |
| 16 | |
| 17 | std::optional<std::string> RTTI::DemangleNameGNU3(BinaryView* view, bool allowMangled, const std::string &mangledName) |
nothing calls this directly
no test coverage detected