From f4f7fbf3dc8164ead907cb418773eef9bbba5644 Mon Sep 17 00:00:00 2001 From: Anson Mansfield Date: Tue, 26 Aug 2025 23:12:22 -0400 Subject: [PATCH] py/obj: Remove unused map new/free function declarations. These functions were removed in 6c9fca2 for v1.9.3. This commit removes their declarations as well. See-also: 6c9fca2aa911e31f6c1b48d3b950b4dc058473d4 Signed-off-by: Anson Mansfield --- py/obj.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/py/obj.h b/py/obj.h index d756d237ab..de740bf4cc 100644 --- a/py/obj.h +++ b/py/obj.h @@ -502,9 +502,7 @@ static inline bool mp_map_slot_is_filled(const mp_map_t *map, size_t pos) { void mp_map_init(mp_map_t *map, size_t n); void mp_map_init_fixed_table(mp_map_t *map, size_t n, const mp_obj_t *table); -mp_map_t *mp_map_new(size_t n); void mp_map_deinit(mp_map_t *map); -void mp_map_free(mp_map_t *map); mp_map_elem_t *mp_map_lookup(mp_map_t *map, mp_obj_t index, mp_map_lookup_kind_t lookup_kind); void mp_map_clear(mp_map_t *map); void mp_map_dump(mp_map_t *map);