refactor: Remove unused MAP_IMPL. (#6573)

This commit is contained in:
Patrick Jackson 2017-04-22 17:32:56 -07:00 committed by Justin M. Keyes
parent a9d37c928e
commit 1fe8945748
2 changed files with 0 additions and 2 deletions

View File

@ -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)

View File

@ -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)