From 39de1458e3dd6f6bd813e2898f0f665954077640 Mon Sep 17 00:00:00 2001 From: HedgehogInTheCPP Date: Tue, 18 Aug 2026 00:18:20 +0300 Subject: [PATCH] constexpr fix. --- include/fast_float/ascii_number.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fast_float/ascii_number.h b/include/fast_float/ascii_number.h index f734362..ced5aad 100644 --- a/include/fast_float/ascii_number.h +++ b/include/fast_float/ascii_number.h @@ -393,7 +393,7 @@ parse_digits_until_19(char const *&p, char const *pend, am_mant_t &mantissa) { #endif template -fastfloat_really_inline void constexpr parse_digits_until_19( +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'));