[subset/cff1] Style

pull/4264/head
Behdad Esfahbod 1 year ago
parent e077ca893e
commit ca353e644d
  1. 4
      src/hb-subset-cff1.cc

@ -420,7 +420,7 @@ struct cff_subset_plan {
for (glyph = 1; glyph < num_glyphs; glyph++)
{
hb_codepoint_t old_glyph;
auto &_ = it[0];
auto &_ = *it;
if (glyph == _.first)
{
old_glyph = _.second;
@ -501,7 +501,7 @@ struct cff_subset_plan {
for (glyph = 1; glyph < num_glyphs; glyph++)
{
hb_codepoint_t old_glyph;
auto &_ = it[0];
auto &_ = *it;
if (glyph == _.first)
{
old_glyph = _.second;

Loading…
Cancel
Save