diff options
Diffstat (limited to 'src/nvim/lua/converter.h')
-rw-r--r-- | src/nvim/lua/converter.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/lua/converter.h b/src/nvim/lua/converter.h index e74e3fb084..8601a32418 100644 --- a/src/nvim/lua/converter.h +++ b/src/nvim/lua/converter.h @@ -10,11 +10,12 @@ #include "nvim/eval.h" typedef struct { - LuaRef func_ref; + LuaRef func_ref; + LuaRef table_ref; } LuaCallable; typedef struct { - LuaCallable lua_callable; + LuaCallable lua_callable; } LuaCFunctionState; #ifdef INCLUDE_GENERATED_DECLARATIONS |