From 7bf1980146cfc081b06264ac367b23ae9397adf1 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 29 May 2018 16:42:44 -0700 Subject: [PATCH] [map] Make hb_map_set() return bool --- src/hb-map.cc | 4 ++-- src/hb-map.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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);