| 112 | parse_context_(format_str) {} |
| 113 | |
| 114 | FMT_CONSTEXPR void on_text(const Char* begin, const Char* end) { |
| 115 | if (begin != end) |
| 116 | handler_(part::make_text({begin, to_unsigned(end - begin)})); |
| 117 | } |
| 118 | |
| 119 | FMT_CONSTEXPR void on_arg_id() { |
| 120 | part_ = part::make_arg_index(parse_context_.next_arg_id()); |
nothing calls this directly
no test coverage detected