Merge branch hotfix/v8.3.2 into release/v9.0.0

This commit is contained in:
papacarlo
2025-04-01 08:35:19 +00:00

View File

@ -122,6 +122,9 @@ namespace NSStringUtils
// locale independent (simple double convert)
static double GetDouble(const std::string& sValue)
{
if (sValue.empty())
return 0;
char delim = '.';
std::string::size_type posDelim = sValue.find(delim);