mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-04 17:26:42 +00:00
Fix even in format_dragon
This commit is contained in:
parent
91abfcd6cf
commit
371f9c71ca
@ -2989,7 +2989,7 @@ FMT_CONSTEXPR20 inline void format_dragon(basic_fp<uint128_t> value,
|
||||
upper = &upper_store;
|
||||
}
|
||||
}
|
||||
int even = static_cast<int>(value.f & 1);
|
||||
int even = static_cast<int>((value.f & 1) == 0);
|
||||
if (!upper) upper = &lower;
|
||||
if ((flags & dragon::fixup) != 0) {
|
||||
if (add_compare(numerator, *upper, denominator) + even <= 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user