| 49 | |
| 50 | |
| 51 | std::string RemoveItaniumPrefix(std::string &name) |
| 52 | { |
| 53 | // Remove numerical prefixes. |
| 54 | while (!name.empty() && std::isdigit(name[0])) |
| 55 | name = name.substr(1); |
| 56 | return name; |
| 57 | } |
| 58 | |
| 59 | |
| 60 | std::optional<std::string> RTTI::DemangleNameItanium(BinaryView* view, bool allowMangled, const std::string &mangledName) |
no test coverage detected