[USE] Simplify `not_ccs_default_ignorable`

pull/3475/head
David Corbett 3 years ago committed by Behdad Esfahbod
parent 6e059a46b7
commit 854219e056
  1. 2
      src/hb-ot-shape-complex-use-machine.hh
  2. 2
      src/hb-ot-shape-complex-use-machine.rl

@ -618,7 +618,7 @@ HB_FUNCOBJ (machine_index);
static bool
not_ccs_default_ignorable (const hb_glyph_info_t &i)
{ return !(i.use_category() == USE(CGJ) && _hb_glyph_info_is_default_ignorable (&i)); }
{ return i.use_category() != USE(CGJ); }
static inline void
find_syllables_use (hb_buffer_t *buffer)

@ -233,7 +233,7 @@ HB_FUNCOBJ (machine_index);
static bool
not_ccs_default_ignorable (const hb_glyph_info_t &i)
{ return !(i.use_category() == USE(CGJ) && _hb_glyph_info_is_default_ignorable (&i)); }
{ return i.use_category() != USE(CGJ); }
static inline void
find_syllables_use (hb_buffer_t *buffer)

Loading…
Cancel
Save