[cff] Use using instead of typedef

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

View File

@ -345,7 +345,7 @@ struct byte_str_ref_t
bool error;
};
typedef hb_vector_t<hb_ubytes_t> byte_str_array_t;
using byte_str_array_t = hb_vector_t<hb_ubytes_t>;
/* stack */
template <typename ELEM, int LIMIT>