[libcxx-commits] [PATCH] D132340: [libc++] Remove noexcept specifier from operator""s
Nikolas Klauser via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Aug 26 08:42:31 PDT 2022
philnik marked an inline comment as done.
philnik 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>
{
----------------
var-const wrote:
> Looks like this patch has unrelated changes?
Yes, thanks!
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