You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the !number_bits(1) == 0 doesn't do what we'd expect. clang-tidy says: "Logical not is only applied to the left hand side of this comparison" and suggests changing it to !(number_bits(1) == 0) which is to say number_bits(1) == 1. But it's not clear what we were trying to do here at all
The text was updated successfully, but these errors were encountered:
the
!number_bits(1) == 0
doesn't do what we'd expect. clang-tidy says: "Logical not is only applied to the left hand side of this comparison" and suggests changing it to!(number_bits(1) == 0
) which is to saynumber_bits(1) == 1
. But it's not clear what we were trying to do here at allThe text was updated successfully, but these errors were encountered: