From a7b9920930f032419439f52ca529abcffc0d15b1 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Fri, 22 Jul 2022 22:05:02 +0800 Subject: refactor: move FunPtr to types.h (#19466) This type itself is not eval-specific. Moving it to types.h can avoid including eval/funcs.h in many headers, and types.h is already included by many headers. --- src/nvim/digraph.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/nvim/digraph.h') diff --git a/src/nvim/digraph.h b/src/nvim/digraph.h index 039fc3370d..71330ae9b1 100644 --- a/src/nvim/digraph.h +++ b/src/nvim/digraph.h @@ -1,7 +1,6 @@ #ifndef NVIM_DIGRAPH_H #define NVIM_DIGRAPH_H -#include "nvim/eval/funcs.h" #include "nvim/ex_cmds_defs.h" #include "nvim/types.h" -- cgit