You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
Try to parse 2.2250738585072014E−308, the min normal positive double, as
described here:
http://en.wikipedia.org/wiki/Double-precision_floating-point_format
What is the expected output? What do you see instead?
0.0
What version of the product are you using? On what operating system?
r131, Linux
Please provide any additional information below.
1.7976931348623157E308 seems to work, that's because in reader.h
d *= internal::Pow10(exp(308) + expFrac(-16))
With 2.2250738585072014E−308, we have
d *= internal::Pow10(exp(-308) + expFrac(-16)) < -308
Original issue reported on code.google.com by [email protected] on 14 Nov 2014 at 2:14
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 14 Nov 2014 at 2:14The text was updated successfully, but these errors were encountered: