Commit a2681aab authored by Victor Zverovich's avatar Victor Zverovich

Debug ppc failure

parent bfc57673
...@@ -1318,8 +1318,10 @@ template <int> constexpr int check_digits(); ...@@ -1318,8 +1318,10 @@ template <int> constexpr int check_digits();
// A double-double floating point number. // A double-double floating point number.
template <typename T> template <typename T>
struct float_info<T, enable_if_t<!std::numeric_limits<T>::is_iec559 && struct float_info<T, enable_if_t<!(std::numeric_limits<T>::digits == 64 ||
!is_float128<T>::value>> { std::numeric_limits<T>::digits == 113 ||
is_float128<T>::value) &&
std::is_same<T, long double>::value>> {
static constexpr int check = check_digits<std::numeric_limits<T>::digits>(); static constexpr int check = check_digits<std::numeric_limits<T>::digits>();
using carrier_uint = detail::uint128_t; using carrier_uint = detail::uint128_t;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment