| 3975 | buffer_context<Char> context; |
| 3976 | |
| 3977 | format_handler(buffer_appender<Char> p_out, basic_string_view<Char> str, |
| 3978 | basic_format_args<buffer_context<Char>> p_args, locale_ref p_loc) |
| 3979 | : parse_context(str), context(p_out, p_args, p_loc) {} |
| 3980 | |
| 3981 | void on_text(const Char* begin, const Char* end) { |
| 3982 | auto text = basic_string_view<Char>(begin, to_unsigned(end - begin)); |
nothing calls this directly
no outgoing calls
no test coverage detected