From 5b99c92d4c6e294bb328113308e5c9cd23b3ed67 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 14 Feb 2019 17:10:04 -0800 Subject: [PATCH] [iter] Use more --- src/hb-iter.hh | 4 ++-- src/hb-ot-layout-gsubgpos.hh | 10 ++++------ 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/src/hb-iter.hh b/src/hb-iter.hh index 730f6824c..df7372e4e 100644 --- a/src/hb-iter.hh +++ b/src/hb-iter.hh @@ -367,7 +367,7 @@ static const struct hb_enable_if (hb_is_iterable (A) && hb_is_iterable (B))> hb_zip_iter_t operator () (const A& a, const B &b) const - { return hb_zip_iter_t (a.iter (), b.iter ()); } + { return hb_zip_iter_t (hb_iter (a), hb_iter (b)); } } hb_zip HB_UNUSED; /* hb_apply() */ @@ -451,7 +451,7 @@ template