[libcxx-commits] [PATCH] D132340: [libc++] Remove noexcept specifier from operator""s
Konstantin Varlamov via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Aug 25 15:39:21 PDT 2022
var-const added inline comments.
================
Comment at: libcxx/include/string:4600
template <class _CharT, class _Allocator>
-struct _LIBCPP_TEMPLATE_VIS
- hash<basic_string<_CharT, char_traits<_CharT>, _Allocator> >
- : public __unary_function<basic_string<_CharT, char_traits<_CharT>, _Allocator>, size_t>
+struct __string_hash : public __unary_function<basic_string<_CharT, char_traits<_CharT>, _Allocator>, size_t>
{
----------------
Looks like this patch has unrelated changes?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D132340/new/
https://reviews.llvm.org/D132340
More information about the libcxx-commits
mailing list