File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -572,10 +572,10 @@ template <> inline constexpr binary_format<double>::equiv_uint
572
572
template <typename T>
573
573
fastfloat_really_inline FASTFLOAT_CONSTEXPR20
574
574
void to_float (bool negative, adjusted_mantissa am, T &value) {
575
- using uint = typename binary_format<T>::equiv_uint;
576
- uint word = (uint )am.mantissa ;
577
- word |= uint (am.power2 ) << binary_format<T>::mantissa_explicit_bits ();
578
- word |= uint (negative) << binary_format<T>::sign_index ();
575
+ using fastfloat_uint = typename binary_format<T>::equiv_uint;
576
+ fastfloat_uint word = (fastfloat_uint )am.mantissa ;
577
+ word |= fastfloat_uint (am.power2 ) << binary_format<T>::mantissa_explicit_bits ();
578
+ word |= fastfloat_uint (negative) << binary_format<T>::sign_index ();
579
579
#if FASTFLOAT_HAS_BIT_CAST
580
580
value = std::bit_cast<T>(word);
581
581
#else
You can’t perform that action at this time.
0 commit comments