| 13237 | } |
| 13238 | |
| 13239 | void go_back(size_t count = 1) noexcept |
| 13240 | { |
| 13241 | return_if_error(); |
| 13242 | TOML_ASSERT_ASSUME(count); |
| 13243 | |
| 13244 | cp = reader.step_back(count); |
| 13245 | prev_pos = cp->position; |
| 13246 | } |
| 13247 | |
| 13248 | void advance() |
| 13249 | { |
nothing calls this directly
no outgoing calls
no test coverage detected