Remove accidental parenthesis

fails only when FMT_BUILTIN_CTZLL is not defined
This commit is contained in:
Tobias Hammer 2020-10-29 11:11:59 +01:00
parent bb68f6089b
commit aa0266306d

View File

@ -1756,7 +1756,7 @@ inline bool divisible_by_power_of_2(uint64_t x, int exp) FMT_NOEXCEPT {
#ifdef FMT_BUILTIN_CTZLL
return FMT_BUILTIN_CTZLL(x) >= exp;
#else
return exp < num_bits<uint64_t>()) && x == ((x >> exp) << exp);
return exp < num_bits<uint64_t>() && x == ((x >> exp) << exp);
#endif
}