Skip to content

Commit

Permalink
📝 cleanup after #936
Browse files Browse the repository at this point in the history
  • Loading branch information
nlohmann committed Jan 27, 2018
1 parent 7aace7c commit 1be3935
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
Binary file modified doc/avatars.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1be3935

Please sign in to comment.