| 317 | } |
| 318 | |
| 319 | void luaL_setmetatable (lua_State *L, const char *tname) { |
| 320 | luaL_checkstack(L, 1, "not enough stack slots"); |
| 321 | luaL_getmetatable(L, tname); |
| 322 | lua_setmetatable(L, -2); |
| 323 | } |
| 324 | |
| 325 | void dtor_resource_handle(void* p) { |
| 326 | auto resource = (skr_resource_handle_t*)p; |
no test coverage detected