[hashmap] Minor

This commit is contained in:
Behdad Esfahbod 2020-04-23 10:50:02 -07:00
parent cc1ed76f38
commit a7df5a7bda
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ struct hb_hashmap_t
)
/* Sink interface. */
hb_hashmap_t<K, V, kINVALID, vINVALID>& operator << (const hb_pair_t<K, V>& v)
hb_hashmap_t& operator << (const hb_pair_t<K, V>& v)
{ set (v.first, v.second); return *this; }
protected: