| 65 | |
| 66 | |
| 67 | char Demangle::Reader::Read() |
| 68 | { |
| 69 | if (1 > Length()) |
| 70 | throw DemangleException(); |
| 71 | char out = m_data[0]; |
| 72 | m_data = m_data.substr(1); |
| 73 | return out; |
| 74 | } |
| 75 | |
| 76 | |
| 77 | string Demangle::Reader::ReadString(size_t count) |
no test coverage detected