Remove irrelevant comment
I tried moving the is_default_ignorable() function to an INTERNAL function. That made the binary size grow by 5k AND things got a tad bit slower!
This commit is contained in:
parent
8259669fbd
commit
76a5310a83
|
@ -226,7 +226,6 @@ _hb_glyph_info_set_unicode_props (hb_glyph_info_t *info, hb_unicode_funcs_t *uni
|
||||||
unsigned int gen_cat = (unsigned int) unicode->general_category (info->codepoint);
|
unsigned int gen_cat = (unsigned int) unicode->general_category (info->codepoint);
|
||||||
unsigned int props = gen_cat;
|
unsigned int props = gen_cat;
|
||||||
|
|
||||||
/* XXX This wouldn't be inlined, or at least not while is_default_ignorable() is inline. */
|
|
||||||
if (unlikely (unicode->is_default_ignorable (info->codepoint)))
|
if (unlikely (unicode->is_default_ignorable (info->codepoint)))
|
||||||
{
|
{
|
||||||
props |= UPROPS_MASK_IGNORABLE;
|
props |= UPROPS_MASK_IGNORABLE;
|
||||||
|
|
Loading…
Reference in New Issue