| 2211 | context_(ctx) {} |
| 2212 | |
| 2213 | template <typename Id> FMT_CONSTEXPR void on_dynamic_width(Id arg_id) { |
| 2214 | this->specs_.width = get_dynamic_spec<width_checker>( |
| 2215 | get_arg(arg_id), context_.error_handler()); |
| 2216 | } |
| 2217 | |
| 2218 | template <typename Id> FMT_CONSTEXPR void on_dynamic_precision(Id arg_id) { |
| 2219 | this->specs_.precision = get_dynamic_spec<precision_checker>( |
no test coverage detected