| 212 | using iterator = string_view::iterator; |
| 213 | |
| 214 | FMT_CONSTEXPR explicit scan_parse_context(string_view format) |
| 215 | : format_(format) {} |
| 216 | |
| 217 | FMT_CONSTEXPR auto begin() const -> iterator { return format_.begin(); } |
| 218 | FMT_CONSTEXPR auto end() const -> iterator { return format_.end(); } |
nothing calls this directly
no outgoing calls
no test coverage detected