From ee25fec2b7a180e797a60d74bb91fa510c6411d9 Mon Sep 17 00:00:00 2001 From: HedgehogInTheCPP Date: Tue, 18 Aug 2026 00:28:53 +0300 Subject: [PATCH] lint unfck --- include/fast_float/ascii_number.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/fast_float/ascii_number.h b/include/fast_float/ascii_number.h index ced5aad..567ff01 100644 --- a/include/fast_float/ascii_number.h +++ b/include/fast_float/ascii_number.h @@ -393,8 +393,9 @@ parse_digits_until_19(char const *&p, char const *pend, am_mant_t &mantissa) { #endif template -fastfloat_really_inline constexpr void parse_digits_until_19( - UC const *&p, UC const *pend, am_mant_t &mantissa) noexcept { +fastfloat_really_inline constexpr void +parse_digits_until_19(UC const *&p, UC const *pend, + am_mant_t &mantissa) noexcept { do { mantissa = mantissa * 10 + static_cast(*p - UC('0')); } while ((++p != pend) && (mantissa < minimal_nineteen_digit_integer));