| 85 | |
| 86 | |
| 87 | string Demangle::Reader::ReadUntil(char sentinal) |
| 88 | { |
| 89 | size_t pos = m_data.find_first_of(sentinal); |
| 90 | if (pos == string::npos) |
| 91 | throw DemangleException(); |
| 92 | return ReadString(pos); |
| 93 | } |
| 94 | |
| 95 | |
| 96 | void Demangle::Reader::Consume(size_t count) |
no test coverage detected