Compare commits

...

2 Commits

Author SHA1 Message Date
HedgehogInTheCPP
aac9975007
Merge 3d46d99cdff4b9c84e1d02f9e0bc0ec701921744 into 7b21183a93c4a8943a2d384f207537d7330547e1 2025-11-21 15:19:12 +00:00
IRainman
3d46d99cdf # warning fix. 2025-11-21 18:19:06 +03: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<T, equiv_uint>(value);
equiv_uint const bits = bit_cast<equiv_uint, T>(value);
adjusted_mantissa am;
if ((bits & exponent_mask) == 0) {