[cff-common] Use existing types for str_buff_vec_t

This commit is contained in:
Behdad Esfahbod 2022-05-09 16:16:07 -06:00
parent e1838ec1f8
commit 64d63cebe2
1 changed files with 2 additions and 2 deletions

View File

@ -52,8 +52,8 @@ struct code_pair_t
hb_codepoint_t glyph;
};
typedef hb_vector_t<unsigned char> str_buff_t;
struct str_buff_vec_t : hb_vector_t<str_buff_t> {};
using str_buff_t = hb_vector_t<unsigned char>;
using str_buff_vec_t = hb_vector_t<str_buff_t>;
/* CFF INDEX */
template <typename COUNT>