[cff-common] Use existing types for str_buff_vec_t
This commit is contained in:
parent
e1838ec1f8
commit
64d63cebe2
|
@ -52,8 +52,8 @@ struct code_pair_t
|
||||||
hb_codepoint_t glyph;
|
hb_codepoint_t glyph;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef hb_vector_t<unsigned char> str_buff_t;
|
using str_buff_t = hb_vector_t<unsigned char>;
|
||||||
struct str_buff_vec_t : hb_vector_t<str_buff_t> {};
|
using str_buff_vec_t = hb_vector_t<str_buff_t>;
|
||||||
|
|
||||||
/* CFF INDEX */
|
/* CFF INDEX */
|
||||||
template <typename COUNT>
|
template <typename COUNT>
|
||||||
|
|
Loading…
Reference in New Issue