| 716 | |
| 717 | |
| 718 | string DemangleGNU3::DemangleInitializer() |
| 719 | { |
| 720 | string out; |
| 721 | if (m_reader.ReadString(2) != "pi") |
| 722 | throw DemangleException(); |
| 723 | out += "("; |
| 724 | while (m_reader.Peek() != 'E') |
| 725 | out += DemangleExpression(); |
| 726 | m_reader.Consume(); |
| 727 | out += ")"; |
| 728 | return out; |
| 729 | } |
| 730 | |
| 731 | static int8_t HexToDec(char c) |
| 732 | { |
nothing calls this directly
no test coverage detected