| 1043 | } |
| 1044 | |
| 1045 | template <typename Char> constexpr auto getsign(sign s) -> Char { |
| 1046 | return static_cast<Char>(static_cast<char>( |
| 1047 | ((' ' << 24) | ('+' << 16) | ('-' << 8)) >> (static_cast<int>(s) * 8))); |
| 1048 | } |
| 1049 | |
| 1050 | template <typename T> FMT_CONSTEXPR auto count_digits_fallback(T n) -> int { |
| 1051 | int count = 1; |
nothing calls this directly
no outgoing calls
no test coverage detected