mirror of
https://github.com/lemire/fast_double_parser.git
synced 2025-04-03 20:04:57 +00:00
Tweaking.
This commit is contained in:
parent
aae09b07c4
commit
935b929ae8
1 changed files with 1 additions and 1 deletions
|
@ -999,7 +999,7 @@ static bool parse_float_strtod(const char *ptr, double *outDouble) {
|
|||
static _locale_t c_locale = _create_locale(LC_ALL, "C");
|
||||
*outDouble = _strtod_l(ptr, &endptr, c_locale);
|
||||
#else
|
||||
static locale_t c_locale = newlocale(LC_ALL_MASK, NULL, NULL);
|
||||
static locale_t c_locale = newlocale(LC_ALL_MASK, "C", NULL);
|
||||
*outDouble = strtod_l(ptr, &endptr, c_locale);
|
||||
#endif
|
||||
// Some libraries will set errno = ERANGE when the value is subnormal,
|
||||
|
|
Loading…
Add table
Reference in a new issue