| 245 | explicit WidthHandler(fmt::FormatSpec &spec) : spec_(spec) {} |
| 246 | |
| 247 | unsigned visit_unhandled_arg() { |
| 248 | FMT_THROW(fmt::FormatError("width is not integer")); |
| 249 | return 0; |
| 250 | } |
| 251 | |
| 252 | template <typename T> |
| 253 | unsigned visit_any_int(T value) { |
nothing calls this directly
no test coverage detected