🚶 fix format

Signed-off-by: Niels Lohmann <mail@nlohmann.me>
This commit is contained in:
Niels Lohmann
2026-07-09 23:09:49 +02:00
parent 68c87ad9de
commit fdba4991ab
3 changed files with 77 additions and 71 deletions
+4 -1
View File
@@ -56,7 +56,10 @@ inline bool is_exactly_representable_as_float(typename BasicJsonType::number_int
// Check absolute value against this threshold
if (val >= 0)
{
if (val >= max_exact) return false;
if (val >= max_exact)
{
return false;
}
}
else
{