diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-01-27 10:23:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-27 10:23:36 +0100 |
commit | 2320f705c42cc7d51045b34516264f38abb7ecde (patch) | |
tree | 49244f0fbbb8f54c5349f3707172ed3392c66eca | |
parent | 3d0149f9848e22e7eb15652b1ec01d5920bd680a (diff) | |
parent | b7dc4491a962af59b8823b00c653aeeee15c110e (diff) | |
download | rneovim-2320f705c42cc7d51045b34516264f38abb7ecde.tar.gz rneovim-2320f705c42cc7d51045b34516264f38abb7ecde.tar.bz2 rneovim-2320f705c42cc7d51045b34516264f38abb7ecde.zip |
Merge pull request #17195 from dundargoc/refactor/assert-include
refactor: include missing assert header
-rw-r--r-- | src/nvim/marktree.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/marktree.h b/src/nvim/marktree.h index 95d63dd14a..30f5aacebc 100644 --- a/src/nvim/marktree.h +++ b/src/nvim/marktree.h @@ -2,6 +2,7 @@ #define NVIM_MARKTREE_H #include <stdint.h> +#include <assert.h> #include "nvim/assert.h" #include "nvim/garray.h" |