diff options
author | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-12 19:35:57 +0200 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-16 19:05:35 +0200 |
commit | 32ddfec84f9335673e38b31950544a24304697f8 (patch) | |
tree | 474403e1325e6bd6c54b31bf2b32128024771522 /src/nvim/memory.h | |
parent | 1710fa43376f4844abe056b3f87aece1845ff89a (diff) | |
download | rneovim-32ddfec84f9335673e38b31950544a24304697f8.tar.gz rneovim-32ddfec84f9335673e38b31950544a24304697f8.tar.bz2 rneovim-32ddfec84f9335673e38b31950544a24304697f8.zip |
memory.h: don't include vim.h in header files
Also include stdint.h in khash.h. It was transitively included by vim.h via
memory.h before. khash.h accidentally relied on that.
Diffstat (limited to 'src/nvim/memory.h')
-rw-r--r-- | src/nvim/memory.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/memory.h b/src/nvim/memory.h index 3a05797e89..4ff31ff732 100644 --- a/src/nvim/memory.h +++ b/src/nvim/memory.h @@ -1,8 +1,7 @@ #ifndef NVIM_MEMORY_H #define NVIM_MEMORY_H -#include <stddef.h> -#include "nvim/vim.h" +#include <stddef.h> // for size_t #ifdef INCLUDE_GENERATED_DECLARATIONS # include "memory.h.generated.h" |