commit 8f35dd5: [Minor] Remove obsoleted compat functions that are no longer used
Vsevolod Stakhov
vsevolod at rspamd.com
Fri Feb 3 14:14:04 UTC 2023
Author: Vsevolod Stakhov
Date: 2023-02-03 14:10:52 +0000
URL: https://github.com/rspamd/rspamd/commit/8f35dd59707be990cc078f1831762f020c8a373a (HEAD -> master)
[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 */
More information about the Commits
mailing list