diff --git a/src/hb-map.cc b/src/hb-map.cc index 4f50828fa..9c7ad787f 100644 --- a/src/hb-map.cc +++ b/src/hb-map.cc @@ -170,12 +170,12 @@ hb_map_allocation_successful (const hb_map_t *map) * * Since: REPLACEME **/ -void +hb_bool_t hb_map_set (hb_map_t *map, hb_codepoint_t key, hb_codepoint_t value) { - map->set (key, value); + return map->set (key, value); } /** diff --git a/src/hb-map.h b/src/hb-map.h index 0901e3bd5..c12fa56a7 100644 --- a/src/hb-map.h +++ b/src/hb-map.h @@ -80,14 +80,14 @@ hb_map_allocation_successful (const hb_map_t *map); hb_map_is_empty (const hb_map_t *map); HB_EXTERN unsigned int - hb_set_get_population (const hb_set_t *set); + hb_map_get_population (const hb_map_t *map); HB_EXTERN hb_bool_t hb_map_is_equal (const hb_map_t *map, const hb_map_t *other); */ -HB_EXTERN void +HB_EXTERN hb_bool_t hb_map_set (hb_map_t *map, hb_codepoint_t key, hb_codepoint_t value);