From b61afb726b698fcdd49296685f81734ef8b9c88b Mon Sep 17 00:00:00 2001 From: HedgehogInTheCPP Date: Fri, 21 Aug 2026 21:17:49 +0300 Subject: [PATCH] fix for ancient standard. --- 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 995fc47..f72ffa1 100644 --- a/include/fast_float/ascii_number.h +++ b/include/fast_float/ascii_number.h @@ -30,7 +30,7 @@ fastfloat_really_inline constexpr bool has_simd_opt() noexcept { // Next function can be micro-optimized, but compilers are entirely // able to optimize it well. template -fastfloat_really_inline constexpr bool is_integer(UC c) noexcept { +fastfloat_really_inline FASTFLOAT_CONSTEXPR14 bool is_integer(UC c) noexcept { const auto d = c - UC('0'); // UC may be signed. return d >= 0 && d <= 9;