| 2387 | explicit FMT_CONSTEXPR precision_adapter(SpecHandler& h) : handler(h) {} |
| 2388 | |
| 2389 | FMT_CONSTEXPR void operator()() { handler.on_dynamic_precision(auto_id()); } |
| 2390 | FMT_CONSTEXPR void operator()(int id) { handler.on_dynamic_precision(id); } |
| 2391 | FMT_CONSTEXPR void operator()(basic_string_view<Char> id) { |
| 2392 | handler.on_dynamic_precision(id); |
nothing calls this directly
no test coverage detected