From c68eb7002f1c2b847d955797e27f5403199e3d9d Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 3 Apr 2019 16:24:12 -0700 Subject: [PATCH] Minor --- src/hb-ot-layout-common.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hb-ot-layout-common.hh b/src/hb-ot-layout-common.hh index bb06ddb..8882efd 100644 --- a/src/hb-ot-layout-common.hh +++ b/src/hb-ot-layout-common.hh @@ -1218,8 +1218,8 @@ struct ClassDefFormat1 return_trace (true); } - hb_codepoint_t glyph_min = hb_iter (glyphs) | hb_reduce (hb_min, 0xFFFFu); - hb_codepoint_t glyph_max = hb_iter (glyphs) | hb_reduce (hb_max, 0u); + hb_codepoint_t glyph_min = +glyphs | hb_reduce (hb_min, 0xFFFFu); + hb_codepoint_t glyph_max = +glyphs | hb_reduce (hb_max, 0u); startGlyph = glyph_min; classValue.len = glyph_max - glyph_min + 1; -- 2.7.4