Revert adding lua array per discussion in #222 (#229)

This reverts commit 55a15c204e.
This commit is contained in:
Paul Kulchenko 2021-08-07 15:20:33 -07:00 committed by GitHub
parent 6bbb44c165
commit 2bc0901ce3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 20 additions and 557 deletions

View file

@ -17,7 +17,6 @@
#include "third_party/lua/lstate.h"
#include "third_party/lua/lstring.h"
#include "third_party/lua/ltable.h"
#include "third_party/lua/larray.h"
#include "third_party/lua/ltm.h"
#include "third_party/lua/lua.h"
@ -778,9 +777,6 @@ static void freeobj (lua_State *L, GCObject *o) {
case LUA_VTABLE:
luaH_free(L, gco2t(o));
break;
case LUA_TARRAY:
luaA_free(L, gco2a(o));
break;
case LUA_VTHREAD:
luaE_freethread(L, gco2th(o));
break;