diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-27 17:21:58 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 17:21:58 +0800 |
commit | 574d25642fc9ca65b396633aeab6e2d32778b642 (patch) | |
tree | 3ec4fa989ef32615fc48d996bdafda448c31b03f /src/nvim/api/buffer.h | |
parent | 84bbe4b0ca935db1f6202db339aee5594a3b3908 (diff) | |
download | rneovim-574d25642fc9ca65b396633aeab6e2d32778b642.tar.gz rneovim-574d25642fc9ca65b396633aeab6e2d32778b642.tar.bz2 rneovim-574d25642fc9ca65b396633aeab6e2d32778b642.zip |
refactor: move Arena and ArenaMem to memory_defs.h (#26240)
Diffstat (limited to 'src/nvim/api/buffer.h')
-rw-r--r-- | src/nvim/api/buffer.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/api/buffer.h b/src/nvim/api/buffer.h index 0f18f5368e..927afe61d0 100644 --- a/src/nvim/api/buffer.h +++ b/src/nvim/api/buffer.h @@ -1,9 +1,10 @@ #pragma once -#include <lauxlib.h> +#include <lua.h> // IWYU pragma: keep +#include <stdint.h> // IWYU pragma: keep #include "nvim/api/keysets.h" -#include "nvim/api/private/defs.h" +#include "nvim/api/private/defs.h" // IWYU pragma: keep #include "nvim/buffer_defs.h" #ifdef INCLUDE_GENERATED_DECLARATIONS |