diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-24 01:17:46 +0200 |
---|---|---|
committer | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-24 01:17:46 +0200 |
commit | 0c68623aca08fa84c7ed945bac7d5066de84d7f7 (patch) | |
tree | f67ce8eb54e3b321b5ff0e9bce669a33943cf6a5 /src/nvim/CMakeLists.txt | |
parent | 4d97ae66f941d9817a8b4857a34fd7ba237a2861 (diff) | |
download | rneovim-0c68623aca08fa84c7ed945bac7d5066de84d7f7.tar.gz rneovim-0c68623aca08fa84c7ed945bac7d5066de84d7f7.tar.bz2 rneovim-0c68623aca08fa84c7ed945bac7d5066de84d7f7.zip |
Remove long_u: hashtab: Enable -Wconversion.
- Add hashtab.c to converted files list.
- Fix conversion issues:
* hash_lookup() : idx : unsigned -> hash_T.
* hash_may_resize() : minitems : int -> size_t.
* hash_may_resize() : newi : unsigned -> hash_T.
* hash_may_resize() : minsize : long_u -> size_t.
Diffstat (limited to 'src/nvim/CMakeLists.txt')
-rw-r--r-- | src/nvim/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index ad45f3ad3b..eb270eecb5 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -37,6 +37,7 @@ set(CONV_SRCS api.c arabic.c garray.c + hashtab.c memory.c map.c os/env.c |