Index: libcxx/include/cmath =================================================================== --- libcxx/include/cmath +++ libcxx/include/cmath @@ -560,7 +560,7 @@ template _LIBCPP_ALWAYS_INLINE -typename enable_if::value, bool>::type +_LIBCPP_CONSTEXPR typename enable_if::value, bool>::type __libcpp_isnan(_A1 __lcpp_x) _NOEXCEPT { #if __has_builtin(__builtin_isnan) @@ -572,7 +572,7 @@ template _LIBCPP_ALWAYS_INLINE -typename enable_if::value, bool>::type +_LIBCPP_CONSTEXPR typename enable_if::value, bool>::type __libcpp_isnan(_A1 __lcpp_x) _NOEXCEPT { return isnan(__lcpp_x); @@ -580,7 +580,7 @@ template _LIBCPP_ALWAYS_INLINE -typename enable_if::value, bool>::type +_LIBCPP_CONSTEXPR typename enable_if::value, bool>::type __libcpp_isinf(_A1 __lcpp_x) _NOEXCEPT { #if __has_builtin(__builtin_isinf) @@ -592,7 +592,7 @@ template _LIBCPP_ALWAYS_INLINE -typename enable_if::value, bool>::type +_LIBCPP_CONSTEXPR typename enable_if::value, bool>::type __libcpp_isinf(_A1 __lcpp_x) _NOEXCEPT { return isinf(__lcpp_x); @@ -600,7 +600,7 @@ template _LIBCPP_ALWAYS_INLINE -typename enable_if::value, bool>::type +_LIBCPP_CONSTEXPR typename enable_if::value, bool>::type __libcpp_isfinite(_A1 __lcpp_x) _NOEXCEPT { #if __has_builtin(__builtin_isfinite) @@ -612,7 +612,7 @@ template _LIBCPP_ALWAYS_INLINE -typename enable_if::value, bool>::type +_LIBCPP_CONSTEXPR typename enable_if::value, bool>::type __libcpp_isfinite(_A1 __lcpp_x) _NOEXCEPT { return isfinite(__lcpp_x);