[algs] Fix hash chaining to std::hash()

This commit is contained in:
Behdad Esfahbod 2022-01-13 11:42:48 -07:00
parent 87496bf63e
commit cfe2b66114
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ struct
impl (const T& v, hb_priority<2>) const HB_RETURN (uint32_t, hb_deref (v).hash ())
template <typename T> constexpr auto
impl (const T& v, hb_priority<1>) const HB_RETURN (uint32_t, std::hash<decltype (hb_deref (v))>{} (hb_deref (v)))
impl (const T& v, hb_priority<1>) const HB_RETURN (uint32_t, std::hash<hb_decay<decltype (hb_deref (v))>>{} (hb_deref (v)))
template <typename T,
hb_enable_if (std::is_integral<T>::value)> constexpr auto