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
Arithmetic overflow: Left shift count is negative or greater than or equal to the operand size which is undefined behavior
This warning indicates shift count is negative or greater than or equal to the number of bits of the operand being shifted, resulting in undefined behavior.
Note: C4293 is a similar check in the Microsoft C++ compiler.