diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2023-12-22 12:24:23 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-22 12:24:23 +0800 |
| commit | 089b934352437ab310a6dd3b138c7ed9445a3d7b (patch) | |
| tree | 51de0fb010d97d4bd82aa9674156aae8ab619cdd /src/nvim/eval | |
| parent | 6700127b30d55e6ddf70495e7b886464172d7ac6 (diff) | |
| download | rneovim-089b934352437ab310a6dd3b138c7ed9445a3d7b.tar.gz rneovim-089b934352437ab310a6dd3b138c7ed9445a3d7b.tar.bz2 rneovim-089b934352437ab310a6dd3b138c7ed9445a3d7b.zip | |
refactor(options): generate BV_ and WV_ constants (#26705)
Diffstat (limited to 'src/nvim/eval')
| -rw-r--r-- | src/nvim/eval/userfunc.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/eval/userfunc.h b/src/nvim/eval/userfunc.h index 65a96a13c5..270ca7db4e 100644 --- a/src/nvim/eval/userfunc.h +++ b/src/nvim/eval/userfunc.h @@ -11,8 +11,6 @@ #include "nvim/pos_defs.h" #include "nvim/types_defs.h" // IWYU pragma: keep -struct funccal_entry; - // From user function to hashitem and back. #define UF2HIKEY(fp) ((fp)->uf_name) #define HIKEY2UF(p) ((ufunc_T *)((p) - offsetof(ufunc_T, uf_name))) |