Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: 4be06921a110dfb32e3e0f8482eb8da549badb7b
https://github.com/Perl/perl5/commit/4be06921a110dfb32e3e0f8482eb8da549badb7b
Author: TAKAI Kousuke <[email protected]>
Date: 2021-08-05 (Thu, 05 Aug 2021)
Changed paths:
M ext/POSIX/POSIX.xs
Log Message:
-----------
POSIX: Use NV instead of hardcoded 'double' in strtol()/strtoul().
Casting (unsigned) long value to 'double' might cause unnecessary
loss of precision if double's significand is not enough wide to preserve
(unsigned) long and NV is configured to be wider than double.