Fix hb_hash(pointer)

This commit is contained in:
Behdad Esfahbod 2019-03-30 19:31:51 -07:00
parent d74dc3ef65
commit d6b28057a5
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ static const struct
template <typename T>
uint32_t operator () (const T *v) const
{ return operator() (v); }
{ return operator() (*v); }
template <typename T,
hb_enable_if (hb_is_integer (T))>