| 163 | |
| 164 | |
| 165 | void input_buffer::set_current(uint i) |
| 166 | { |
| 167 | if (error_ == 0 && i && check(i - 1, size_) == 0) |
| 168 | current_ = i; |
| 169 | else |
| 170 | error_ = -1; |
| 171 | } |
| 172 | |
| 173 | |
| 174 | // read only access through [], advance current |
no outgoing calls
no test coverage detected