| 2056 | |
| 2057 | template <typename T, FMT_ENABLE_IF(is_integer<T>::value)> |
| 2058 | FMT_CONSTEXPR unsigned long long operator()(T value) { |
| 2059 | if (is_negative(value)) handler_.on_error("negative precision"); |
| 2060 | return static_cast<unsigned long long>(value); |
| 2061 | } |
| 2062 | |
| 2063 | template <typename T, FMT_ENABLE_IF(!is_integer<T>::value)> |
| 2064 | FMT_CONSTEXPR unsigned long long operator()(T) { |
nothing calls this directly
no test coverage detected