| 1415 | |
| 1416 | template <typename Char> |
| 1417 | FMT_CONSTEXPR auto parse_width(const Char* begin, const Char* end, |
| 1418 | format_specs& specs, arg_ref<Char>& width_ref, |
| 1419 | parse_context<Char>& ctx) -> const Char* { |
| 1420 | auto result = parse_dynamic_spec(begin, end, specs.width, width_ref, ctx); |
| 1421 | specs.set_dynamic_width(result.kind); |
| 1422 | return result.end; |
| 1423 | } |
| 1424 | |
| 1425 | template <typename Char> |
| 1426 | FMT_CONSTEXPR auto parse_precision(const Char* begin, const Char* end, |