| 13203 | |
| 13204 | TOML_NODISCARD |
| 13205 | source_position current_position(source_index fallback_offset = 0) const noexcept |
| 13206 | { |
| 13207 | if (!is_eof()) |
| 13208 | return cp->position; |
| 13209 | return { prev_pos.line, static_cast<source_index>(prev_pos.column + fallback_offset) }; |
| 13210 | } |
| 13211 | |
| 13212 | template <typename... T> |
| 13213 | TOML_RETURNS_BY_THROWING |
nothing calls this directly
no outgoing calls
no test coverage detected