💄 fixed indentation
This commit is contained in:
parent
bf348ca8a4
commit
7fa4ddf93e
3 changed files with 11 additions and 11 deletions
|
@ -6091,8 +6091,8 @@ class binary_reader
|
||||||
const double val = [&half]
|
const double val = [&half]
|
||||||
{
|
{
|
||||||
const int exp = (half >> 10) & 0x1F;
|
const int exp = (half >> 10) & 0x1F;
|
||||||
assert(0 <= exp and exp <= 32);
|
|
||||||
const int mant = half & 0x3FF;
|
const int mant = half & 0x3FF;
|
||||||
|
assert(0 <= exp and exp <= 32);
|
||||||
assert(0 <= mant and mant <= 1024);
|
assert(0 <= mant and mant <= 1024);
|
||||||
switch (exp)
|
switch (exp)
|
||||||
{
|
{
|
||||||
|
|
|
@ -48,7 +48,7 @@ using nlohmann::json;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(JSON_HAS_CPP_17)
|
#if defined(JSON_HAS_CPP_17)
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
TEST_CASE("value conversion")
|
TEST_CASE("value conversion")
|
||||||
|
|
Loading…
Reference in a new issue