diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-27 20:58:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 20:58:37 +0800 |
commit | 38a20dd89f91c45ec8589bf1c50d50732882d38a (patch) | |
tree | aad537751c8696c4a384984074b1a15fe60c6004 /src/nvim/api/private/helpers.c | |
parent | acf525287950277e7b83794184e3df5dcfdecc48 (diff) | |
download | rneovim-38a20dd89f91c45ec8589bf1c50d50732882d38a.tar.gz rneovim-38a20dd89f91c45ec8589bf1c50d50732882d38a.tar.bz2 rneovim-38a20dd89f91c45ec8589bf1c50d50732882d38a.zip |
build(IWYU): replace most private mappings with pragmas (#26247)
Diffstat (limited to 'src/nvim/api/private/helpers.c')
-rw-r--r-- | src/nvim/api/private/helpers.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/api/private/helpers.c b/src/nvim/api/private/helpers.c index bbeaa452ba..828362c10e 100644 --- a/src/nvim/api/private/helpers.c +++ b/src/nvim/api/private/helpers.c @@ -1,10 +1,10 @@ #include <assert.h> -#include <inttypes.h> #include <limits.h> #include <msgpack/unpack.h> #include <stdarg.h> #include <stdbool.h> #include <stddef.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -17,6 +17,7 @@ #include "nvim/ascii.h" #include "nvim/buffer_defs.h" #include "nvim/eval/typval.h" +#include "nvim/eval/typval_defs.h" #include "nvim/eval/vars.h" #include "nvim/ex_eval.h" #include "nvim/garray.h" |