From c265fd31ab2b0307650ad94e1ea272e9360c345f Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Sun, 22 Aug 2021 11:25:59 +0200 Subject: refactor(api): remove unneccesary indirection around handles These things are just maps to pointers, no need to perform a huge song and dance around it. --- src/nvim/api/private/helpers.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/nvim/api/private/helpers.c') diff --git a/src/nvim/api/private/helpers.c b/src/nvim/api/private/helpers.c index 92c06befc3..6114500277 100644 --- a/src/nvim/api/private/helpers.c +++ b/src/nvim/api/private/helpers.c @@ -9,7 +9,6 @@ #include "nvim/api/private/helpers.h" #include "nvim/api/private/defs.h" -#include "nvim/api/private/handle.h" #include "nvim/api/vim.h" #include "nvim/msgpack_rpc/helpers.h" #include "nvim/lua/executor.h" -- cgit