📝 cleanup after #936

This commit is contained in:
Niels Lohmann 2018-01-27 17:43:44 +01:00
parent 7aace7c976
commit 1be3935e9d
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69
3 changed files with 2 additions and 1 deletions

View File

@ -934,6 +934,7 @@ I deeply appreciate the help of the following people.
- [Eren Okka](https://github.com/erengy) fixed some MSVC warnings.
- [abolz](https://github.com/abolz) integrated the Grisu2 algorithm for proper floating-point formatting, allowing more roundtrip checks to succeed.
- [Vadim Evard](https://github.com/Pipeliner) fixed a Markdown issue in the README.
- [zerodefect](https://github.com/zerodefect) fixed a compiler warning.
Thanks a lot for helping out! Please [let me know](mailto:mail@nlohmann.me) if I forgot someone.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 576 KiB

After

Width:  |  Height:  |  Size: 582 KiB

View File

@ -7294,7 +7294,7 @@ boundaries compute_boundaries(FloatType value)
const bool is_denormal = (E == 0);
const diyfp v = is_denormal
? diyfp(F, 1 - kBias)
? diyfp(F, kMinExp)
: diyfp(F + kHiddenBit, static_cast<int>(E) - kBias);
// Compute the boundaries m- and m+ of the floating-point value