diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh index 4dc1e2cd7..52e5f6db1 100644 --- a/src/hb-open-type.hh +++ b/src/hb-open-type.hh @@ -806,13 +806,13 @@ struct SortedArrayOf : ArrayOf operator hb_sorted_array_t () { return as_array (); } operator hb_sorted_array_t () const { return as_array (); } - hb_array_t sub_array (unsigned int start_offset, unsigned int count) const + hb_sorted_array_t sub_array (unsigned int start_offset, unsigned int count) const { return as_array ().sub_array (start_offset, count);} - hb_array_t sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) const + hb_sorted_array_t sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) const { return as_array ().sub_array (start_offset, count);} - hb_array_t sub_array (unsigned int start_offset, unsigned int count) + hb_sorted_array_t sub_array (unsigned int start_offset, unsigned int count) { return as_array ().sub_array (start_offset, count);} - hb_array_t sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) + hb_sorted_array_t sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) { return as_array ().sub_array (start_offset, count);} bool serialize (hb_serialize_context_t *c, unsigned int items_len)