mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-26 09:28:21 +00:00
Debug ppc failure
This commit is contained in:
parent
bfc5767368
commit
a2681aabcb
@ -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;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user