From d19712f23345af2545af609721f1dbccd002a0df Mon Sep 17 00:00:00 2001 From: Nicolas Hillegeer Date: Fri, 18 Jul 2014 10:47:48 +0200 Subject: [PATCH] garray: add necessary includes The upcoming decoupling of vim.h and globals.h needs this to compile. --- src/nvim/garray.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/nvim/garray.h b/src/nvim/garray.h index 5a90da21c2..b32bab52f7 100644 --- a/src/nvim/garray.h +++ b/src/nvim/garray.h @@ -1,6 +1,9 @@ #ifndef NVIM_GARRAY_H #define NVIM_GARRAY_H +#include // for size_t + +#include "nvim/types.h" // for char_u #include "nvim/log.h" /// Structure used for growing arrays.