We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a518f4 commit 7ce5343Copy full SHA for 7ce5343
include/fast_float/float_common.h
@@ -86,11 +86,11 @@ template <typename UC> struct parse_options_t {
86
: format(fmt), decimal_point(dot), base(b) {}
87
88
/** Which number formats are accepted */
89
- const chars_format format;
+ chars_format format;
90
/** The character used as decimal point */
91
- const UC decimal_point;
+ UC decimal_point;
92
/** The base used for integers */
93
- const uint_fast8_t base; /* only allowed from 2 to 36 */
+ uint_fast8_t base; /* only allowed from 2 to 36 */
94
};
95
96
using parse_options = parse_options_t<char>;
0 commit comments