diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2024-12-23 05:43:52 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-23 05:43:52 -0800 |
commit | 2a7d0ed6145bf3f8b139c2694563f460f829813a (patch) | |
tree | 8bb488f7cb612ecf56ccea2c62042012584eba68 /src/nvim/buffer_updates.c | |
parent | 55c5d0de262b8a9eb03a65f6e6f45e8d26213eb4 (diff) | |
download | rneovim-2a7d0ed6145bf3f8b139c2694563f460f829813a.tar.gz rneovim-2a7d0ed6145bf3f8b139c2694563f460f829813a.tar.bz2 rneovim-2a7d0ed6145bf3f8b139c2694563f460f829813a.zip |
refactor: iwyu #31637
Result of `make iwyu` (after some "fixups").
Diffstat (limited to 'src/nvim/buffer_updates.c')
-rw-r--r-- | src/nvim/buffer_updates.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/buffer_updates.c b/src/nvim/buffer_updates.c index e725678937..ab07d67ef3 100644 --- a/src/nvim/buffer_updates.c +++ b/src/nvim/buffer_updates.c @@ -16,12 +16,13 @@ #include "nvim/lua/executor.h" #include "nvim/memline.h" #include "nvim/memory.h" +#include "nvim/memory_defs.h" #include "nvim/msgpack_rpc/channel.h" #include "nvim/pos_defs.h" #include "nvim/types_defs.h" #ifdef INCLUDE_GENERATED_DECLARATIONS -# include "buffer_updates.c.generated.h" +# include "buffer_updates.c.generated.h" // IWYU pragma: keep #endif // Register a channel. Return True if the channel was added, or already added. |