refactor: include missing assert header

This will solve the "implicit declaration of function ‘assert’" warning
when running "make lint".
This commit is contained in:
Dundar Göc 2022-01-25 12:44:33 +01:00
parent 20482a2b83
commit b7dc4491a9

View File

@ -2,6 +2,7 @@
#define NVIM_MARKTREE_H
#include <stdint.h>
#include <assert.h>
#include "nvim/assert.h"
#include "nvim/garray.h"