neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 1f1a65a9e4c602cd80458b213c28eadbdb5b1de1
parent 55246d44f92beb17898d006e5324bf2d44f44c31
Author: dundargoc <33953936+dundargoc@users.noreply.github.com>
Date:   Sat, 21 May 2022 17:27:54 +0200

ci: fix lint errors caused by missing includes (#18673)

This will fix the `check-single-includes` check which started failing
after https://github.com/neovim/neovim/pull/18663/.
Diffstat:
Msrc/nvim/os/fs.h | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/nvim/os/fs.h b/src/nvim/os/fs.h @@ -1,6 +1,9 @@ #ifndef NVIM_OS_FS_H #define NVIM_OS_FS_H +#include "nvim/os/fs_defs.h" // for uv_* +#include "nvim/types.h" // for char_u + #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/fs.h.generated.h" #endif