From 7ce53435fc4f7f033780d914433c80cbf4028dfa Mon Sep 17 00:00:00 2001 From: IRainman Date: Fri, 26 Dec 2025 22:11:13 +0300 Subject: [PATCH] try again. need test refactoring. --- include/fast_float/float_common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h index 22499cc..763f799 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -86,11 +86,11 @@ template struct parse_options_t { : format(fmt), decimal_point(dot), base(b) {} /** Which number formats are accepted */ - const chars_format format; + chars_format format; /** The character used as decimal point */ - const UC decimal_point; + UC decimal_point; /** The base used for integers */ - const uint_fast8_t base; /* only allowed from 2 to 36 */ + uint_fast8_t base; /* only allowed from 2 to 36 */ }; using parse_options = parse_options_t;