diff options
author | Patrick Jackson <PatrickSJackson@gmail.com> | 2017-04-22 17:32:56 -0700 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-23 02:32:56 +0200 |
commit | 1fe8945748620713402cab77a46501ec5311778b (patch) | |
tree | 5e045bd06cbd7bab1b170562ac39036d359cad3b | |
parent | a9d37c928e109f8bb75faf24c5b4effb90b115ff (diff) | |
download | rneovim-1fe8945748620713402cab77a46501ec5311778b.tar.gz rneovim-1fe8945748620713402cab77a46501ec5311778b.tar.bz2 rneovim-1fe8945748620713402cab77a46501ec5311778b.zip |
refactor: Remove unused MAP_IMPL. (#6573)
-rw-r--r-- | src/nvim/map.c | 1 | ||||
-rw-r--r-- | src/nvim/map.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/map.c b/src/nvim/map.c index 54a9e559af..366b286d14 100644 --- a/src/nvim/map.c +++ b/src/nvim/map.c @@ -142,7 +142,6 @@ static inline bool String_eq(String a, String b) MAP_IMPL(int, int, DEFAULT_INITIALIZER) -MAP_IMPL(cstr_t, uint64_t, DEFAULT_INITIALIZER) MAP_IMPL(cstr_t, ptr_t, DEFAULT_INITIALIZER) MAP_IMPL(ptr_t, ptr_t, DEFAULT_INITIALIZER) MAP_IMPL(uint64_t, ptr_t, DEFAULT_INITIALIZER) diff --git a/src/nvim/map.h b/src/nvim/map.h index ba3e84cb31..a4fccf47f9 100644 --- a/src/nvim/map.h +++ b/src/nvim/map.h @@ -25,7 +25,6 @@ void map_##T##_##U##_clear(Map(T, U) *map); MAP_DECLS(int, int) -MAP_DECLS(cstr_t, uint64_t) MAP_DECLS(cstr_t, ptr_t) MAP_DECLS(ptr_t, ptr_t) MAP_DECLS(uint64_t, ptr_t) |