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

Minor

上级 0b99429e
......@@ -34,7 +34,7 @@
#include "hb-set-private.hh"
#define NOT_COVERED ((unsigned int) 0x110000)
#define NOT_COVERED ((unsigned int) -1)
#define MAX_NESTING_LEVEL 8
......@@ -348,9 +348,8 @@ struct CoverageFormat1
inline unsigned int get_coverage (hb_codepoint_t glyph_id) const
{
int i = glyphArray.search (glyph_id);
if (i != -1)
return i;
return NOT_COVERED;
ASSERT_STATIC (((unsigned int) -1) == NOT_COVERED);
return i;
}
inline bool sanitize (hb_sanitize_context_t *c) {
......
......@@ -1533,7 +1533,7 @@ struct PosLookup : Lookup
while (c->buffer->idx < c->buffer->len)
{
if ((c->buffer->cur().mask & c->lookup_mask) &&
(*coverage) (c->buffer->cur().codepoint) != NOT_COVERED &&
coverage->get_coverage (c->buffer->cur().codepoint) != NOT_COVERED &&
apply_once (c))
ret = true;
else
......
......@@ -1210,7 +1210,7 @@ struct SubstLookup : Lookup
while (c->buffer->idx < c->buffer->len)
{
if ((c->buffer->cur().mask & c->lookup_mask) &&
(*coverage) (c->buffer->cur().codepoint) != NOT_COVERED &&
coverage->get_coverage (c->buffer->cur().codepoint) != NOT_COVERED &&
apply_once (c))
ret = true;
else
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册