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
bitCount() and bitfieldReverse() require integer inputs, so a check should be performed wether they are or not.
Additionally, bitfieldReverse() throws warning C4309 in Visual C++ if typename T (the argument's underlying type) isn't unsigned long long or u64vec respectively, because unsigned long long constants are cast to T.
Since the casting is intentional, you might want to silence the warning for this part of the code.
The text was updated successfully, but these errors were encountered:
bitCount()
andbitfieldReverse()
require integer inputs, so a check should be performed wether they are or not.Additionally,
bitfieldReverse()
throws warningC4309
in Visual C++ iftypename T
(the argument's underlying type) isn'tunsigned long long
oru64vec
respectively, becauseunsigned long long
constants are cast toT
.Since the casting is intentional, you might want to silence the warning for this part of the code.
The text was updated successfully, but these errors were encountered: