diff --git a/libcxx/include/functional b/libcxx/include/functional --- a/libcxx/include/functional +++ b/libcxx/include/functional @@ -470,6 +470,7 @@ template <> struct hash; template <> struct hash; template <> struct hash; +template <> struct hash; // since C++20 template <> struct hash; template <> struct hash; template <> struct hash; diff --git a/libcxx/include/utility b/libcxx/include/utility --- a/libcxx/include/utility +++ b/libcxx/include/utility @@ -1364,6 +1364,16 @@ size_t operator()(unsigned char __v) const _NOEXCEPT {return static_cast(__v);} }; +#ifdef __cpp_char8_t +template <> +struct _LIBCPP_TEMPLATE_VIS hash + : public unary_function +{ + _LIBCPP_INLINE_VISIBILITY + size_t operator()(char8_t __v) const _NOEXCEPT {return static_cast(__v);} +}; +#endif // __cpp_char8_t + #ifndef _LIBCPP_HAS_NO_UNICODE_CHARS template <> diff --git a/libcxx/test/libcxx/extensions/hash/specializations.pass.cpp b/libcxx/test/libcxx/extensions/hash/specializations.pass.cpp --- a/libcxx/test/libcxx/extensions/hash/specializations.pass.cpp +++ b/libcxx/test/libcxx/extensions/hash/specializations.pass.cpp @@ -23,6 +23,9 @@ assert(__gnu_cxx::hash()(42) == 42); assert(__gnu_cxx::hash()(42) == 42); assert(__gnu_cxx::hash()(42) == 42); + #ifdef __cpp_lib_char8_t + assert(__gnu_cxx::hash()(42) == 42); + #endif assert(__gnu_cxx::hash()(42) == 42); assert(__gnu_cxx::hash()(42) == 42); assert(__gnu_cxx::hash()(42) == 42);