1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-29 23:01:16 +03:00

💄 fixed indentation

This commit is contained in:
Niels Lohmann
2018-06-23 17:27:40 +02:00
parent bf348ca8a4
commit 7fa4ddf93e
3 changed files with 11 additions and 11 deletions

View File

@ -6091,8 +6091,8 @@ class binary_reader
const double val = [&half]
{
const int exp = (half >> 10) & 0x1F;
assert(0 <= exp and exp <= 32);
const int mant = half & 0x3FF;
assert(0 <= exp and exp <= 32);
assert(0 <= mant and mant <= 1024);
switch (exp)
{