| 671 | |
| 672 | template <typename T, FMT_ENABLE_IF(std::is_integral<T>::value)> |
| 673 | inline bool isfinite(T) { |
| 674 | return true; |
| 675 | } |
| 676 | template <typename T, FMT_ENABLE_IF(std::is_floating_point<T>::value)> |
| 677 | inline bool isfinite(T value) { |
| 678 | return std::isfinite(value); |
no outgoing calls
no test coverage detected