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