mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
[MultiVarData] Remove a likely
This commit is contained in:
parent
ad0a5c93b5
commit
c81b1c43b1
1 changed files with 2 additions and 2 deletions
|
@ -2565,7 +2565,7 @@ struct VarRegionList
|
|||
if (cache)
|
||||
{
|
||||
cached_value = &(cache[region_index]);
|
||||
if (likely (*cached_value != REGION_CACHE_ITEM_CACHE_INVALID))
|
||||
if (*cached_value != REGION_CACHE_ITEM_CACHE_INVALID)
|
||||
return *cached_value;
|
||||
}
|
||||
|
||||
|
@ -2743,7 +2743,7 @@ struct SparseVarRegionList
|
|||
if (cache)
|
||||
{
|
||||
cached_value = &(cache[region_index]);
|
||||
if (likely (*cached_value != REGION_CACHE_ITEM_CACHE_INVALID))
|
||||
if (*cached_value != REGION_CACHE_ITEM_CACHE_INVALID)
|
||||
return *cached_value;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue