Skip to content

Commit 7ce5343

Browse files
committed
try again. need test refactoring.
1 parent 8a518f4 commit 7ce5343

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/fast_float/float_common.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ template <typename UC> struct parse_options_t {
8686
: format(fmt), decimal_point(dot), base(b) {}
8787

8888
/** Which number formats are accepted */
89-
const chars_format format;
89+
chars_format format;
9090
/** The character used as decimal point */
91-
const UC decimal_point;
91+
UC decimal_point;
9292
/** The base used for integers */
93-
const uint_fast8_t base; /* only allowed from 2 to 36 */
93+
uint_fast8_t base; /* only allowed from 2 to 36 */
9494
};
9595

9696
using parse_options = parse_options_t<char>;

0 commit comments

Comments
 (0)