| 1253 | using base::check_arg_id; |
| 1254 | |
| 1255 | FMT_CONSTEXPR void check_dynamic_spec(int arg_id) { |
| 1256 | if (arg_id < num_args_ && types_ && !is_integral_type(types_[arg_id])) |
| 1257 | report_error("width/precision is not integer"); |
| 1258 | } |
| 1259 | }; |
| 1260 | |
| 1261 | // An argument reference. |
nothing calls this directly
no test coverage detected