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
Bit-ops do not have the same precedence in lua, so for example x = h1 >> 6 | h2 << 20 gets misparsed into x = ((h1 >> 6) | h2) << 20, when it should be x = ((h1 >> 6) | (h2 << 20)).
The text was updated successfully, but these errors were encountered:
Bit-ops do not have the same precedence in lua, so for example
x = h1 >> 6 | h2 << 20
gets misparsed intox = ((h1 >> 6) | h2) << 20
, when it should bex = ((h1 >> 6) | (h2 << 20))
.The text was updated successfully, but these errors were encountered: