fix for 32 bit build. completely done. All other parser mode also work fine.

This commit is contained in:
IRainman 2025-03-06 22:47:47 +03:00
parent 9ebac23081
commit 7a38e1bc75

View File

@ -260,9 +260,9 @@ from_chars_advanced(const parsed_number_string_t<UC> &pns, T &value) noexcept {
if (pns.mantissa == 0) {
value =
#ifndef FASTFLOAT_ONLY_POSITIVE_C_NUMBER_WO_INF_NAN
pns.negative ? T(-0.)
pns.negative ? T(-0.) :
#endif
: T(0.);
T(0.);
return answer;
}
#endif