From 76a5310a830c7ae12037b768c5043bef0ff733a0 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 2 Nov 2015 17:52:45 -0800 Subject: [PATCH] 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! --- src/hb-ot-layout-private.hh | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hb-ot-layout-private.hh b/src/hb-ot-layout-private.hh index eab4ac64e..f1a101c0c 100644 --- a/src/hb-ot-layout-private.hh +++ b/src/hb-ot-layout-private.hh @@ -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 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))) { props |= UPROPS_MASK_IGNORABLE;