📝 cleanup after #936
This commit is contained in:
parent
7aace7c976
commit
1be3935e9d
3 changed files with 2 additions and 1 deletions
|
@ -934,6 +934,7 @@ I deeply appreciate the help of the following people.
|
||||||
- [Eren Okka](https://github.com/erengy) fixed some MSVC warnings.
|
- [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.
|
- [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.
|
- [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.
|
Thanks a lot for helping out! Please [let me know](mailto:mail@nlohmann.me) if I forgot someone.
|
||||||
|
|
||||||
|
|
BIN
doc/avatars.png
BIN
doc/avatars.png
Binary file not shown.
Before Width: | Height: | Size: 576 KiB After Width: | Height: | Size: 582 KiB |
|
@ -7294,7 +7294,7 @@ boundaries compute_boundaries(FloatType value)
|
||||||
|
|
||||||
const bool is_denormal = (E == 0);
|
const bool is_denormal = (E == 0);
|
||||||
const diyfp v = is_denormal
|
const diyfp v = is_denormal
|
||||||
? diyfp(F, 1 - kBias)
|
? diyfp(F, kMinExp)
|
||||||
: diyfp(F + kHiddenBit, static_cast<int>(E) - kBias);
|
: diyfp(F + kHiddenBit, static_cast<int>(E) - kBias);
|
||||||
|
|
||||||
// Compute the boundaries m- and m+ of the floating-point value
|
// Compute the boundaries m- and m+ of the floating-point value
|
||||||
|
|
Loading…
Reference in a new issue