Commit 69a84198 authored by Tobias Hammer's avatar Tobias Hammer Committed by Victor Zverovich

Remove accidental parenthesis (#1968)

fails only when FMT_BUILTIN_CTZLL is not defined
parent 5c045049
......@@ -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
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment