| 115 | |
| 116 | |
| 117 | string DemangleGNU3::Reader::PeekString(size_t count) |
| 118 | { |
| 119 | if (count > Length()) |
| 120 | return "\0"; |
| 121 | return m_data.substr(m_offset, count); |
| 122 | } |
| 123 | |
| 124 | |
| 125 | char DemangleGNU3::Reader::Peek() |
no outgoing calls
no test coverage detected