| 2313 | using arg_ref_type = arg_ref<char_type>; |
| 2314 | |
| 2315 | FMT_CONSTEXPR arg_ref_type make_arg_ref(int arg_id) { |
| 2316 | context_.check_arg_id(arg_id); |
| 2317 | return arg_ref_type(arg_id); |
| 2318 | } |
| 2319 | |
| 2320 | FMT_CONSTEXPR arg_ref_type make_arg_ref(auto_id) { |
| 2321 | return arg_ref_type(context_.next_arg_id()); |
nothing calls this directly
no test coverage detected