diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-05-17 13:00:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-17 13:00:32 +0200 |
commit | 67176c3f20cf8f0b6c7d7c4d75093ea6b7c00b74 (patch) | |
tree | c1a0e185985227f05f1da2480de74739c779dfaf /src/nvim/map_defs.h | |
parent | 189fb6203262340e7a59e782be970bcd8ae28e61 (diff) | |
parent | e2fdd53d8c015913e8be4ff708fc3488558c8906 (diff) | |
download | rneovim-67176c3f20cf8f0b6c7d7c4d75093ea6b7c00b74.tar.gz rneovim-67176c3f20cf8f0b6c7d7c4d75093ea6b7c00b74.tar.bz2 rneovim-67176c3f20cf8f0b6c7d7c4d75093ea6b7c00b74.zip |
Merge pull request #15534 from bfredl/monomap
refactor(map): avoid duplicated khash_t implementations for values and support sets
Diffstat (limited to 'src/nvim/map_defs.h')
-rw-r--r-- | src/nvim/map_defs.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/nvim/map_defs.h b/src/nvim/map_defs.h deleted file mode 100644 index 61afedbe50..0000000000 --- a/src/nvim/map_defs.h +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef NVIM_MAP_DEFS_H -#define NVIM_MAP_DEFS_H - -#include "klib/khash.h" - -typedef const char *cstr_t; -typedef void *ptr_t; - -#define Map(T, U) Map_##T##_##U -#define PMap(T) Map(T, ptr_t) - -#endif // NVIM_MAP_DEFS_H |