aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/undo.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-01-25 07:57:21 +0800
committerGitHub <noreply@github.com>2024-01-25 07:57:21 +0800
commit4e59422e1d4950a3042bad41a7b81c8db4f8b648 (patch)
tree49302e43d103e80835d4bd297de1362784d9c5d6 /src/nvim/undo.c
parent76a659eb773ca69d8b6a8f08e1a5c538dc03b8fd (diff)
downloadrneovim-4e59422e1d4950a3042bad41a7b81c8db4f8b648.tar.gz
rneovim-4e59422e1d4950a3042bad41a7b81c8db4f8b648.tar.bz2
rneovim-4e59422e1d4950a3042bad41a7b81c8db4f8b648.zip
refactor: IWYU (#27186)
Diffstat (limited to 'src/nvim/undo.c')
-rw-r--r--src/nvim/undo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/undo.c b/src/nvim/undo.c
index 11ebbb9bf1..3eb0f1f2ec 100644
--- a/src/nvim/undo.c
+++ b/src/nvim/undo.c
@@ -67,7 +67,6 @@
// Uncomment the next line for including the u_check() function. This warns
// for errors in the debug information.
// #define U_DEBUG 1
-#include "nvim/marktree.h"
#define UH_MAGIC 0x18dade // value for uh_magic when in use
#define UE_MAGIC 0xabc123 // value for ue_magic when in use
@@ -112,6 +111,7 @@
#include "nvim/macros_defs.h"
#include "nvim/mark.h"
#include "nvim/mark_defs.h"
+#include "nvim/marktree_defs.h"
#include "nvim/mbyte.h"
#include "nvim/memline.h"
#include "nvim/memline_defs.h"