mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Fix incorrect initialization of luaO_nilobject which caused compile warning on mac os.
This commit is contained in:
parent
acc22608b8
commit
8c2ea74f9e
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const TValue luaO_nilobject_ = {{NULL}, LUA_TNIL};
|
const TValue luaO_nilobject_ = {{NULL}, {0}, LUA_TNIL};
|
||||||
|
|
||||||
int luaO_log2(unsigned int x)
|
int luaO_log2(unsigned int x)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue