mirror of
https://github.com/nlohmann/json.git
synced 2024-11-23 22:19:02 +08:00
📝 cleanup after #936
This commit is contained in:
parent
7aace7c976
commit
1be3935e9d
@ -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.
|
||||
|
||||
|
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 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
|
||||
|
Loading…
Reference in New Issue
Block a user