diff options
author | Abseil Team <absl-team@google.com> | 2023-03-24 11:49:57 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-03-24 11:50:58 -0700 |
commit | 700e786e607788fb514a9021375191e47484fcb1 (patch) | |
tree | 15c6dc44e75f4b4a0c8b046b0fc417165d8764c7 /absl/hash/hash.h | |
parent | 7b9f660fc35321c53f421e8e8948fa6e2042a4e1 (diff) | |
download | abseil-700e786e607788fb514a9021375191e47484fcb1.tar.gz abseil-700e786e607788fb514a9021375191e47484fcb1.tar.bz2 abseil-700e786e607788fb514a9021375191e47484fcb1.zip |
Hash support for std::wstring_view/u16string_view/u32string_view
PiperOrigin-RevId: 519200954
Change-Id: I349023cacab0ac4cbefb8505efd29a5eda1e9067
Diffstat (limited to 'absl/hash/hash.h')
-rw-r--r-- | absl/hash/hash.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/absl/hash/hash.h b/absl/hash/hash.h index 956befa9..abf88830 100644 --- a/absl/hash/hash.h +++ b/absl/hash/hash.h @@ -113,7 +113,9 @@ ABSL_NAMESPACE_BEGIN // * std::string (as well as any instance of std::basic_string that // uses one of {char, wchar_t, char16_t, char32_t} and its associated // std::char_traits) -// * std::string_view +// * std::string_view (as well as any instance of std::basic_string_view +// that uses one of {char, wchar_t, char16_t, char32_t} and its associated +// std::char_traits) // * All the standard sequence containers (provided the elements are hashable) // * All the standard associative containers (provided the elements are // hashable) |