| 2370 | explicit FMT_CONSTEXPR width_adapter(SpecHandler& h) : handler(h) {} |
| 2371 | |
| 2372 | FMT_CONSTEXPR void operator()() { handler.on_dynamic_width(auto_id()); } |
| 2373 | FMT_CONSTEXPR void operator()(int id) { handler.on_dynamic_width(id); } |
| 2374 | FMT_CONSTEXPR void operator()(basic_string_view<Char> id) { |
| 2375 | handler.on_dynamic_width(id); |
nothing calls this directly
no test coverage detected