| 3135 | |
| 3136 | template <typename Char, typename ErrorHandler> |
| 3137 | FMT_CONSTEXPR void advance_to( |
| 3138 | basic_format_parse_context<Char, ErrorHandler>& ctx, const Char* p) { |
| 3139 | ctx.advance_to(ctx.begin() + (p - &*ctx.begin())); |
| 3140 | } |
| 3141 | |
| 3142 | template <typename ArgFormatter, typename Char, typename Context> |
| 3143 | struct format_handler : internal::error_handler { |
no test coverage detected