mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-14 15:23:15 +00:00
Code only checks if 4 bytes for `rawptr` size. However lua defines the macro (that I assume the odin code is based on) as: ``` /* @@ LUAI_IS32INT is true iff 'int' has (at least) 32 bits. */ #define LUAI_IS32INT ((UINT_MAX >> 30) >= 3) ``` This error broke `upvalues` because it would be looking for the wrong index for lua to find them at.