| 319 | } |
| 320 | |
| 321 | bool Rewind(size_type n) |
| 322 | { |
| 323 | // Rewind by n characters if the buffer hasn't been compacted yet |
| 324 | if (n > nReadPos) |
| 325 | return false; |
| 326 | nReadPos -= n; |
| 327 | return true; |
| 328 | } |
| 329 | |
| 330 | |
| 331 | // |
no outgoing calls
no test coverage detected