Compare commits

..

1 Commits

Author SHA1 Message Date
HedgehogInTheCPP
f98c5e5f88
Merge 3685667dd2e7033e977af0ea5ca011e990248f44 into 7b21183a93c4a8943a2d384f207537d7330547e1 2025-11-19 19:13:30 +00:00

View File

@ -67,7 +67,7 @@ to_extended(T const &value) noexcept {
constexpr am_pow_t bias = binary_format<T>::mantissa_explicit_bits() -
binary_format<T>::minimum_exponent();
equiv_uint const bits = bit_cast<equiv_uint, T>(value);
equiv_uint const bits = bit_cast<T, equiv_uint>(value);
adjusted_mantissa am;
if ((bits & exponent_mask) == 0) {