| 37 | |
| 38 | template <typename T> |
| 39 | bool isnan(T x) |
| 40 | { |
| 41 | // Select the correct partially specialized type. |
| 42 | return has_NaN<T, std::numeric_limits<T>::has_quiet_NaN>::isnan(x); |
| 43 | } |
| 44 | VTK_ABI_NAMESPACE_END |
| 45 | } // namespace detail |
| 46 |
no outgoing calls