mirror of
https://github.com/nlohmann/json.git
synced 2026-05-20 13:15:23 +00:00
💄 fixed indentation
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user