| 343 | } |
| 344 | |
| 345 | std::size_t Formatter<int>::format(const Containers::MutableStringView& buffer, int value, FormatContext& context) { |
| 346 | return formatNumber(buffer, value, context); |
| 347 | } |
| 348 | |
| 349 | std::size_t Formatter<unsigned int>::format(const Containers::MutableStringView& buffer, unsigned int value, FormatContext& context) { |
| 350 | return formatNumber(buffer, value, context); |
nothing calls this directly
no test coverage detected