| 13231 | |
| 13232 | template <typename... T> |
| 13233 | TOML_RETURNS_BY_THROWING |
| 13234 | void set_error(const T&... reason) const |
| 13235 | { |
| 13236 | set_error_at(current_position(1), reason...); |
| 13237 | } |
| 13238 | |
| 13239 | void go_back(size_t count = 1) noexcept |
| 13240 | { |
nothing calls this directly
no outgoing calls
no test coverage detected