compilation fix in some cases.

This commit is contained in:
IRainman 2025-03-12 20:05:34 +03:00
parent b869816c39
commit 07ab87ca2b

View File

@ -513,7 +513,7 @@ parse_int_string(UC const *p, UC const *pend, T &value,
return answer;
}
if ((*p == UC('-')) ||
(uint64_t(options.fmt & chars_format::allow_leading_plus) && (*p == UC('+')))) {
(uint64_t(options.format & chars_format::allow_leading_plus) && (*p == UC('+')))) {
++p;
}
#endif