提交 ff93ac8c 编写于 作者: B Behdad Esfahbod

Minor

上级 e0486fc1
...@@ -399,13 +399,12 @@ struct hb_apply_context_t ...@@ -399,13 +399,12 @@ struct hb_apply_context_t
inline bool next (void) inline bool next (void)
{ {
assert (num_items > 0); assert (num_items > 0);
matcher_t::may_skip_t skip;
while (!has_no_chance ()) while (!has_no_chance ())
{ {
idx++; idx++;
const hb_glyph_info_t &info = c->buffer->info[idx]; const hb_glyph_info_t &info = c->buffer->info[idx];
skip = matcher.may_skip (c, info); matcher_t::may_skip_t skip = matcher.may_skip (c, info);
if (unlikely (skip == matcher_t::SKIP_YES)) if (unlikely (skip == matcher_t::SKIP_YES))
continue; continue;
...@@ -472,13 +471,12 @@ struct hb_apply_context_t ...@@ -472,13 +471,12 @@ struct hb_apply_context_t
inline bool prev (void) inline bool prev (void)
{ {
assert (num_items > 0); assert (num_items > 0);
matcher_t::may_skip_t skip;
while (!has_no_chance ()) while (!has_no_chance ())
{ {
idx--; idx--;
const hb_glyph_info_t &info = c->buffer->out_info[idx]; const hb_glyph_info_t &info = c->buffer->out_info[idx];
skip = matcher.may_skip (c, info); matcher_t::may_skip_t skip = matcher.may_skip (c, info);
if (unlikely (skip == matcher_t::SKIP_YES)) if (unlikely (skip == matcher_t::SKIP_YES))
continue; continue;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册