mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[map] Micro-optimize for hb_map_t
This commit is contained in:
parent
2f05c32c36
commit
b7a8d23bc8
1 changed files with 2 additions and 1 deletions
|
@ -401,7 +401,8 @@ struct hb_hashmap_t
|
|||
unsigned int tombstone = (unsigned) -1;
|
||||
while (items[i].is_used ())
|
||||
{
|
||||
if (items[i].hash == hash && items[i] == key)
|
||||
if ((hb_is_same (K, hb_codepoint_t) || items[i].hash == hash) &&
|
||||
items[i] == key)
|
||||
return items[i];
|
||||
if (tombstone == (unsigned) -1 && items[i].is_tombstone ())
|
||||
tombstone = i;
|
||||
|
|
Loading…
Add table
Reference in a new issue