mirror of
https://github.com/lemire/fast_double_parser.git
synced 2025-04-03 20:04:57 +00:00
Refine code according to the comments from reviewer.
This commit is contained in:
parent
2df5ff039b
commit
0e2a13868f
1 changed files with 1 additions and 3 deletions
|
@ -1110,13 +1110,11 @@ 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__)
|
||||
#elif 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