small fix

This commit is contained in:
IRainman 2025-12-25 19:21:17 +03:00
parent 9ff1624d92
commit 074fdeac74

View File

@ -259,7 +259,7 @@ template <typename UC> struct parsed_number_string_t {
// contains the range of the significant digits
span<UC const> integer{}; // non-nullable
span<UC const> fraction{}; // nullable
UC const *lastmatch;
UC const *lastmatch{nullptr};
#ifndef FASTFLOAT_ONLY_POSITIVE_C_NUMBER_WO_INF_NAN
bool negative{false};
#endif