| 157 | |
| 158 | |
| 159 | string DemangleGNU3::Reader::ReadString(size_t count) |
| 160 | { |
| 161 | if (count > Length()) |
| 162 | throw DemangleException(); |
| 163 | |
| 164 | const string out = m_data.substr(m_offset, count); |
| 165 | m_offset += count; |
| 166 | return out; |
| 167 | } |
| 168 | |
| 169 | |
| 170 | string DemangleGNU3::Reader::ReadUntil(char sentinal) |
no test coverage detected