提交 7bf19801 编写于 作者: B Behdad Esfahbod

[map] Make hb_map_set() return bool

上级 face7cf5
......@@ -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);
}
/**
......
......@@ -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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册