]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Remove obsoleted compat functions that are no longer used
authorVsevolod Stakhov <vsevolod@rspamd.com>
Fri, 3 Feb 2023 14:10:52 +0000 (14:10 +0000)
committerVsevolod Stakhov <vsevolod@rspamd.com>
Fri, 3 Feb 2023 14:10:52 +0000 (14:10 +0000)
src/lua/lua_common.h

index 2fea11f4a490f3bfa993bbede64ee19b7e39fa4f..b782b3d37af9a637f50f9dd14c40245b2a920545 100644 (file)
@@ -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 */