diff options
Diffstat (limited to 'src/nvim/marktree.h')
-rw-r--r-- | src/nvim/marktree.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/nvim/marktree.h b/src/nvim/marktree.h index 37119048ae..c76359d3f9 100644 --- a/src/nvim/marktree.h +++ b/src/nvim/marktree.h @@ -1,21 +1,16 @@ #pragma once -#include <assert.h> #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include "klib/kvec.h" -#include "nvim/assert_defs.h" #include "nvim/decoration_defs.h" -#include "nvim/garray_defs.h" +#include "nvim/garray_defs.h" // IWYU pragma: keep #include "nvim/map_defs.h" -#include "nvim/pos_defs.h" -#include "nvim/types_defs.h" +#include "nvim/pos_defs.h" // IWYU pragma: keep // only for debug functions: -#include "nvim/api/private/defs.h" - -struct mtnode_s; +#include "nvim/api/private/defs.h" // IWYU pragma: keep #define MT_MAX_DEPTH 20 #define MT_BRANCH_FACTOR 10 |