mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-14 17:13:40 +00:00
[set] Micro-optimize iteration
This commit is contained in:
parent
ad620af6f6
commit
81b2a56d54
1 changed files with 1 additions and 1 deletions
|
@ -363,7 +363,7 @@ struct hb_bit_set_invertible_t
|
|||
unsigned __len__ () const { return l; }
|
||||
iter_t end () const { return iter_t (*s, false); }
|
||||
bool operator != (const iter_t& o) const
|
||||
{ return s != o.s || v != o.v; }
|
||||
{ return v != o.v || s != o.s; }
|
||||
|
||||
protected:
|
||||
const hb_bit_set_invertible_t *s;
|
||||
|
|
Loading…
Add table
Reference in a new issue