mirror of
https://github.com/fmtlib/fmt.git
synced 2025-01-27 06:35:37 +00:00
clang-format
This commit is contained in:
parent
ce4d87acd4
commit
8e9bffa986
@ -440,7 +440,8 @@ class fp {
|
|||||||
std::numeric_limits<float>::digits - 1);
|
std::numeric_limits<float>::digits - 1);
|
||||||
if (min_normal_e > e) half_ulp <<= min_normal_e - e;
|
if (min_normal_e > e) half_ulp <<= min_normal_e - e;
|
||||||
upper = normalize<0>(fp(f + half_ulp, e));
|
upper = normalize<0>(fp(f + half_ulp, e));
|
||||||
lower = fp(f - (half_ulp >> ((f == implicit_bit && e > min_normal_e) ? 1 : 0)), e);
|
lower = fp(
|
||||||
|
f - (half_ulp >> ((f == implicit_bit && e > min_normal_e) ? 1 : 0)), e);
|
||||||
lower.f <<= lower.e - upper.e;
|
lower.f <<= lower.e - upper.e;
|
||||||
lower.e = upper.e;
|
lower.e = upper.e;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user