mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
[map] Micro-optimize
This shows a speedup.
This commit is contained in:
parent
12b0680e60
commit
2655b7607c
1 changed files with 1 additions and 1 deletions
|
@ -215,7 +215,7 @@ struct hb_hashmap_t
|
|||
if ((hb_is_same (K, hb_codepoint_t) || items[i].hash == hash) &&
|
||||
items[i] == key)
|
||||
break;
|
||||
if (tombstone == (unsigned) -1 && items[i].is_tombstone ())
|
||||
if (items[i].is_tombstone () && tombstone == (unsigned) -1)
|
||||
tombstone = i;
|
||||
i = (i + ++step) & mask;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue