summaryrefslogtreecommitdiff
path: root/lib/frrlua.c
diff options
context:
space:
mode:
authorDonald Lee <dlqs@gmx.com>2021-08-10 04:39:15 +0800
committerQuentin Young <qlyoung@qlyoung.net>2023-11-20 20:45:02 -0500
commitac91b343d635f056e8de47224719ed6218e79dfb (patch)
tree2ddd0b64e447ca38d92c331c6ea60d14040f1f69 /lib/frrlua.c
parentac3fdc60df78cb2b301943e6fdf78b5efe9df66a (diff)
lib: Remove old noop decoders
Co-authored-by: Quentin Young <qlyoung@qlyoung.net> Signed-off-by: Quentin Young <qlyoung@qlyoung.net> Signed-off-by: Donald Lee <dlqs@gmx.com>
Diffstat (limited to 'lib/frrlua.c')
-rw-r--r--lib/frrlua.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/frrlua.c b/lib/frrlua.c
index e626efe20b..720e95491a 100644
--- a/lib/frrlua.c
+++ b/lib/frrlua.c
@@ -346,21 +346,6 @@ void *lua_tostringp(lua_State *L, int idx)
}
/*
- * Decoder for const values, since we cannot modify them.
- */
-void lua_decode_noop(lua_State *L, int idx, const void *ptr)
-{
-}
-
-
-/*
- * Noop decoder for int.
- */
-void lua_decode_integer_noop(lua_State *L, int idx, int i)
-{
-}
-
-/*
* Logging.
*
* Lua-compatible wrappers for FRR logging functions.