From ba328bbf7d24bf8ce007c0d972bd300ae286f0b4 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Sat, 10 Jun 2023 09:44:49 -0400 Subject: [PATCH] Renaming the using for the local type. --- include/fast_float/float_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h index 6aab7aa..5bc8c90 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -572,7 +572,7 @@ template <> inline constexpr binary_format::equiv_uint template fastfloat_really_inline FASTFLOAT_CONSTEXPR20 void to_float(bool negative, adjusted_mantissa am, T &value) { - using uint = typename binary_format::equiv_uint; + using fastfloat_uint = typename binary_format::equiv_uint; uint word = (uint)am.mantissa; word |= uint(am.power2) << binary_format::mantissa_explicit_bits(); word |= uint(negative) << binary_format::sign_index();