mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-26 00:21:13 +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.
|
||||
template <typename T>
|
||||
struct float_info<T, enable_if_t<!std::numeric_limits<T>::is_iec559 &&
|
||||
!is_float128<T>::value>> {
|
||||
struct float_info<T, enable_if_t<!(std::numeric_limits<T>::digits == 64 ||
|
||||
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>();
|
||||
using carrier_uint = detail::uint128_t;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user