diff options
author | ZyX <kp-pav@ya.ru> | 2014-06-01 02:44:52 +0400 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-06-02 11:04:18 -0300 |
commit | f0be78506fe1e0955d6f2c8b937dd2f147a2d03a (patch) | |
tree | 862b6a31c6f34a0d5a805031b27396977b32c196 /src | |
parent | d906708a439687c7476083b883d29b8e99dd15e3 (diff) | |
download | rneovim-f0be78506fe1e0955d6f2c8b937dd2f147a2d03a.tar.gz rneovim-f0be78506fe1e0955d6f2c8b937dd2f147a2d03a.tar.bz2 rneovim-f0be78506fe1e0955d6f2c8b937dd2f147a2d03a.zip |
Move memory.h include above func_attr.h include
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/lib/khash.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/lib/khash.h b/src/nvim/lib/khash.h index 090b690290..9427f52be0 100644 --- a/src/nvim/lib/khash.h +++ b/src/nvim/lib/khash.h @@ -129,10 +129,11 @@ int main() { #include <string.h> #include <limits.h> +#include "nvim/memory.h" + #define DEFINE_FUNC_ATTRIBUTES #include "nvim/func_attr.h" #undef DEFINE_FUNC_ATTRIBUTES -#include "nvim/memory.h" /* compiler specific configuration */ |