mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-12 16:23:01 +00:00
[bit-set] Remove a likely()
This commit is contained in:
parent
749dc1eee0
commit
cb09fe7995
1 changed files with 1 additions and 1 deletions
|
@ -368,7 +368,7 @@ struct hb_bit_set_t
|
|||
{
|
||||
if (page_map.arrayZ[a].major == other.page_map.arrayZ[b].major)
|
||||
{
|
||||
if (likely (page_at (a).may_intersect (other.page_at (b))))
|
||||
if (page_at (a).may_intersect (other.page_at (b)))
|
||||
return true;
|
||||
a++;
|
||||
b++;
|
||||
|
|
Loading…
Add table
Reference in a new issue