From ca353e644d3b920f9559cdc7b29b7460edee7f88 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 4 Jun 2023 17:25:29 -0600 Subject: [PATCH] [subset/cff1] Style --- src/hb-subset-cff1.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hb-subset-cff1.cc b/src/hb-subset-cff1.cc index 610f8719c..4d22da03c 100644 --- a/src/hb-subset-cff1.cc +++ b/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;