mirror of
https://github.com/lemire/fast_double_parser.git
synced 2025-04-03 20:04:57 +00:00
Supporting IBM i/PASE env.
This commit is contained in:
parent
7aebf2f747
commit
2df5ff039b
1 changed files with 4 additions and 0 deletions
|
@ -1110,9 +1110,13 @@ static const char * parse_float_strtod(const char *ptr, double *outDouble) {
|
|||
#elif defined(_WIN32)
|
||||
static _locale_t c_locale = _create_locale(LC_ALL, "C");
|
||||
*outDouble = _strtod_l(ptr, &endptr, c_locale);
|
||||
#else
|
||||
#if defined(__PASE__)
|
||||
*outDouble = strtod(ptr, &endptr);
|
||||
#else
|
||||
static locale_t c_locale = newlocale(LC_ALL_MASK, "C", NULL);
|
||||
*outDouble = strtod_l(ptr, &endptr, c_locale);
|
||||
#endif
|
||||
#endif
|
||||
// Some libraries will set errno = ERANGE when the value is subnormal,
|
||||
// yet we may want to be able to parse subnormal values.
|
||||
|
|
Loading…
Add table
Reference in a new issue