From 67a98b00ca7b61d20cc85d9177208145076d174f Mon Sep 17 00:00:00 2001 From: HedgehogInTheCPP Date: Fri, 21 Aug 2026 16:17:53 +0300 Subject: [PATCH] lint unfck --- include/fast_float/digit_comparison.h | 2 +- include/fast_float/parse_number.h | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/include/fast_float/digit_comparison.h b/include/fast_float/digit_comparison.h index 450fd1c..8bbaaa0 100644 --- a/include/fast_float/digit_comparison.h +++ b/include/fast_float/digit_comparison.h @@ -217,7 +217,7 @@ fastfloat_really_inline FASTFLOAT_CONSTEXPR20 bool is_truncated(span s) noexcept { return is_truncated(s.ptr, s.ptr + s.len()); } -#ifdef FASTFLOAT_64BIT_LIMB && FASTFLOAT_X86_SIMD >= 31 +#ifdef FASTFLOAT_64BIT_LIMB &&FASTFLOAT_X86_SIMD >= 31 fastfloat_really_inline FASTFLOAT_CONSTEXPR20 void parse_sixteen_digits(char const *&p, limb &value, am_digits &counter, am_digits &count) noexcept { diff --git a/include/fast_float/parse_number.h b/include/fast_float/parse_number.h index bc7f6ff..896b534 100644 --- a/include/fast_float/parse_number.h +++ b/include/fast_float/parse_number.h @@ -256,7 +256,8 @@ clinger_fast_path_impl(am_mant_t const mantissa, am_pow_t const exponent, return true; } #endif - value = static_cast(mantissa) * binary_format::exact_power_of_ten(exponent); + value = static_cast(mantissa) * + binary_format::exact_power_of_ten(exponent); #ifndef FASTFLOAT_ONLY_POSITIVE_C_NUMBER_WO_INF_NAN if (is_negative) { value = -value;