From 8f35dd59707be990cc078f1831762f020c8a373a Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Fri, 3 Feb 2023 14:10:52 +0000 Subject: [PATCH] [Minor] Remove obsoleted compat functions that are no longer used --- src/lua/lua_common.h | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/lua/lua_common.h b/src/lua/lua_common.h index 2fea11f4a..b782b3d37 100644 --- a/src/lua/lua_common.h +++ b/src/lua/lua_common.h @@ -69,20 +69,6 @@ static inline int lua_absindex (lua_State *L, int i) { } #endif -static inline int lua_rawgetp (lua_State *L, int i, const void *p) { - int abs_i = lua_absindex(L, i); - lua_pushlightuserdata(L, (void*)p); - lua_rawget(L, abs_i); - return lua_type(L, -1); -} - -static inline void lua_rawsetp (lua_State *L, int i, const void *p) { - int abs_i = lua_absindex(L, i); - luaL_checkstack(L, 1, "not enough stack slots"); - lua_pushlightuserdata(L, (void*)p); - lua_insert(L, -2); - lua_rawset(L, abs_i); -} #endif /* Interface definitions */ -- 2.39.5