diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-01-25 07:57:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-25 07:57:21 +0800 |
commit | 4e59422e1d4950a3042bad41a7b81c8db4f8b648 (patch) | |
tree | 49302e43d103e80835d4bd297de1362784d9c5d6 /src/nvim/buffer.h | |
parent | 76a659eb773ca69d8b6a8f08e1a5c538dc03b8fd (diff) | |
download | rneovim-4e59422e1d4950a3042bad41a7b81c8db4f8b648.tar.gz rneovim-4e59422e1d4950a3042bad41a7b81c8db4f8b648.tar.bz2 rneovim-4e59422e1d4950a3042bad41a7b81c8db4f8b648.zip |
refactor: IWYU (#27186)
Diffstat (limited to 'src/nvim/buffer.h')
-rw-r--r-- | src/nvim/buffer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/buffer.h b/src/nvim/buffer.h index 144573849c..4c5023d39a 100644 --- a/src/nvim/buffer.h +++ b/src/nvim/buffer.h @@ -1,11 +1,14 @@ #pragma once +#include <stdint.h> + #include "nvim/buffer_defs.h" // IWYU pragma: keep #include "nvim/eval/typval_defs.h" #include "nvim/ex_cmds_defs.h" // IWYU pragma: keep #include "nvim/func_attr.h" #include "nvim/gettext_defs.h" // IWYU pragma: keep #include "nvim/macros_defs.h" +#include "nvim/marktree_defs.h" #include "nvim/types_defs.h" /// Values for buflist_getfile() |