mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Fix yet another mac os compile warning.
This commit is contained in:
parent
8c2ea74f9e
commit
d9c0977734
1 changed files with 2 additions and 2 deletions
|
@ -42,8 +42,8 @@ static_assert(TKey{{NULL}, {0}, LUA_TNIL, -(MAXSIZE - 1)}.next == -(MAXSIZE - 1)
|
||||||
|
|
||||||
// empty hash data points to dummynode so that we can always dereference it
|
// empty hash data points to dummynode so that we can always dereference it
|
||||||
const LuaNode luaH_dummynode = {
|
const LuaNode luaH_dummynode = {
|
||||||
{{NULL}, 0, LUA_TNIL}, /* value */
|
{{NULL}, {0}, LUA_TNIL}, /* value */
|
||||||
{{NULL}, 0, LUA_TNIL, 0} /* key */
|
{{NULL}, {0}, LUA_TNIL, 0} /* key */
|
||||||
};
|
};
|
||||||
|
|
||||||
#define dummynode (&luaH_dummynode)
|
#define dummynode (&luaH_dummynode)
|
||||||
|
|
Loading…
Add table
Reference in a new issue