| 3840 | |
| 3841 | template <typename Context, typename ID> |
| 3842 | FMT_CONSTEXPR auto get_arg(Context& ctx, ID id) -> decltype(ctx.arg(id)) { |
| 3843 | auto arg = ctx.arg(id); |
| 3844 | if (!arg) ctx.on_error("argument not found"); |
| 3845 | return arg; |
| 3846 | } |
| 3847 | |
| 3848 | template <typename Handler, typename Context> |
| 3849 | FMT_CONSTEXPR void handle_dynamic_spec(int& value, |