| 4185 | |
| 4186 | template <typename UInt> |
| 4187 | FMT_CONSTEXPR20 auto format_unsigned(UInt value) -> char* { |
| 4188 | auto n = static_cast<detail::uint32_or_64_or_128_t<UInt>>(value); |
| 4189 | return detail::do_format_decimal(buffer_, n, buffer_size - 1); |
| 4190 | } |
| 4191 | |
| 4192 | template <typename Int> |
| 4193 | FMT_CONSTEXPR20 auto format_signed(Int value) -> char* { |
nothing calls this directly
no test coverage detected