Remove __gc from renderer

This commit is contained in:
buffet 2020-02-10 00:22:01 +00:00
parent 3c53b275f0
commit 5bacdf12c6

View file

@ -124,8 +124,5 @@ luaK_kiwmi_renderer_register(lua_State *L)
lua_pushcfunction(L, luaK_usertype_ref_equal); lua_pushcfunction(L, luaK_usertype_ref_equal);
lua_setfield(L, -2, "__eq"); lua_setfield(L, -2, "__eq");
lua_pushcfunction(L, luaK_kiwmi_object_gc);
lua_setfield(L, -2, "__gc");
return 0; return 0;
} }