[subset-cff] Remove unnecessary initialization

This commit is contained in:
Behdad Esfahbod 2022-11-27 12:58:04 -07:00
parent 6af4985bf9
commit 3ff502d3ae
1 changed files with 1 additions and 1 deletions

View File

@ -576,7 +576,7 @@ template <typename SUBSETTER, typename SUBRS, typename ACC, typename ENV, typena
struct subr_subsetter_t
{
subr_subsetter_t (ACC &acc_, const hb_subset_plan_t *plan_)
: acc (acc_), plan (plan_), closures(acc_.fdCount), cached_charstrings(),
: acc (acc_), plan (plan_), closures(acc_.fdCount),
remaps(acc_.fdCount)
{}