| 2665 | FMT_CONSTEXPR void on_replacement_field(const Char*) {} |
| 2666 | |
| 2667 | FMT_CONSTEXPR const Char* on_format_specs(const Char* begin, const Char*) { |
| 2668 | advance_to(context_, begin); |
| 2669 | return arg_id_ < num_args ? parse_funcs_[arg_id_](context_) : begin; |
| 2670 | } |
| 2671 | |
| 2672 | FMT_CONSTEXPR void on_error(const char* message) { |
| 2673 | context_.on_error(message); |
nothing calls this directly
no test coverage detected