如何删除由<代码>luaL_newmetatable(L,“foo” );创建的一张表<代码>foo,以便luaL_getmetatable(L,“foo” );
将再次推动NIL的增值?
Currently I know how to have C++ objects instantiated and passed around in Lua using SWIG bindings, what I need is the reverse. I am using Lua & C++ & SWIG. I have interfaces in C++ and ...