some warnings fix in CI builds.

This commit is contained in:
IRainman 2025-12-29 16:43:54 +03:00
parent 59da568ec6
commit 5857b98bfd

View File

@ -106,7 +106,7 @@ template <typename UC> struct parse_options_t {
constexpr explicit parse_options_t( constexpr explicit parse_options_t(
chars_format const fmt = chars_format::general, UC const dot = UC('.'), chars_format const fmt = chars_format::general, UC const dot = UC('.'),
base_t const b = 10) noexcept base_t const b = 10) noexcept
: format(fmt), decimal_point(dot), base(b) {} : format(fmt), base(b), decimal_point(dot) {}
/** Which number formats are accepted */ /** Which number formats are accepted */
chars_format format; chars_format format;