| 2193 | |
| 2194 | template <typename Context> |
| 2195 | FMT_CONSTEXPR typename Context::format_arg get_arg(Context& ctx, int id) { |
| 2196 | auto arg = ctx.arg(id); |
| 2197 | if (!arg) ctx.on_error("argument index out of range"); |
| 2198 | return arg; |
| 2199 | } |
| 2200 | |
| 2201 | // The standard format specifier handler with checking. |
| 2202 | template <typename ParseContext, typename Context> |