[subset] Fix HB_TINY build
Fixes https://github.com/harfbuzz/harfbuzzjs/issues/34#issuecomment-789247723
This commit is contained in:
parent
7cb22ba7eb
commit
2902529b92
|
@ -3433,9 +3433,12 @@ struct GSUBGPOS
|
||||||
const Feature& f = get_feature (i);
|
const Feature& f = get_feature (i);
|
||||||
|
|
||||||
if (f.featureParams.is_null ()
|
if (f.featureParams.is_null ()
|
||||||
&& !f.intersects_lookup_indexes (lookup_indices)
|
&& !f.intersects_lookup_indexes (lookup_indices)
|
||||||
&& !alternate_feature_indices.has (i))
|
#ifndef HB_NO_VAR
|
||||||
feature_indices->del (i);
|
&& !alternate_feature_indices.has (i)
|
||||||
|
#endif
|
||||||
|
)
|
||||||
|
feature_indices->del (i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue