diff options
Diffstat (limited to 'src/3rdparty/luax/luax.h')
-rw-r--r-- | src/3rdparty/luax/luax.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/3rdparty/luax/luax.h b/src/3rdparty/luax/luax.h index 3816430..49036b9 100644 --- a/src/3rdparty/luax/luax.h +++ b/src/3rdparty/luax/luax.h @@ -158,11 +158,6 @@ inline void* luax_newinstance(lua_State* L, const char* tname, int size) { void* p = lua_newuserdata(L, size); - //u->data = data; - //u->flags = flags; - //u->own = own; - - // luaL_getmetatable(L, tname) or luaL_newmetatable(L, tname); lua_setmetatable(L, -2); |