mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[map] Return const reference from operator()
Like we do in operator[].
This commit is contained in:
parent
b04ca1c188
commit
c6368e014d
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ struct hb_hashmap_t
|
|||
return nullptr;
|
||||
}
|
||||
/* Projection. */
|
||||
V operator () (K k) const { return get (k); }
|
||||
const V& operator () (K k) const { return get (k); }
|
||||
|
||||
unsigned size () const { return mask ? mask + 1 : 0; }
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue