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)).