From 2f8ff9a6ebb2df214a501b0949e93e31960c766f Mon Sep 17 00:00:00 2001 From: IRainman Date: Tue, 6 May 2025 23:40:29 +0300 Subject: [PATCH] compilation fix --- include/fast_float/float_common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h index 7d14be7..37e0ec8 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -76,8 +76,8 @@ using from_chars_result = from_chars_result_t; template struct parse_options_t { constexpr explicit parse_options_t( - chars_format const fmt = chars_format::general, UC const dot = UC('.'), - chars_format_t const b = 10) noexcept + chars_format_t const fmt = chars_format::general, UC const dot = UC('.'), + uint_fast8_t const b = 10) noexcept : format(fmt), decimal_point(dot), base(b){ #ifdef FASTFLOAT_ONLY_POSITIVE_C_NUMBER_WO_INF_NAN