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'));