From: Jonathan Wakely Date: Tue, 14 Nov 2023 22:02:55 +0000 (+0000) Subject: libstdc++: Fix std::hash [PR112348] X-Git-Tag: basepoints/gcc-15~4674 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f2fc42d9e52e8322e718e0154cd235d00906f99;p=thirdparty%2Fgcc.git libstdc++: Fix std::hash [PR112348] libstdc++-v3/ChangeLog: PR libstdc++/112348 * include/std/stacktrace (hash>): Fix type of hash functio nfor entries. * testsuite/19_diagnostics/stacktrace/hash.cc: New test. --- diff --git a/libstdc++-v3/include/std/stacktrace b/libstdc++-v3/include/std/stacktrace index da0e48d35329..9a0d0b160687 100644 --- a/libstdc++-v3/include/std/stacktrace +++ b/libstdc++-v3/include/std/stacktrace @@ -797,7 +797,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION size_t operator()(const basic_stacktrace<_Allocator>& __st) const noexcept { - hash __h; + hash __h; size_t __val = _Hash_impl::hash(__st.size()); for (const auto& __f : __st) __val = _Hash_impl::__hash_combine(__h(__f), __val); diff --git a/libstdc++-v3/testsuite/19_diagnostics/stacktrace/hash.cc b/libstdc++-v3/testsuite/19_diagnostics/stacktrace/hash.cc new file mode 100644 index 000000000000..88831efd6879 --- /dev/null +++ b/libstdc++-v3/testsuite/19_diagnostics/stacktrace/hash.cc @@ -0,0 +1,23 @@ +// { dg-options "-lstdc++exp" } +// { dg-do run { target c++23 } } +// { dg-require-effective-target stacktrace } + +#include +#include +#include + +void +test_hash() +{ + using Alloc = __gnu_test::uneq_allocator; + using S = std::basic_stacktrace; + S s; + std::size_t h = std::hash()(s); + std::size_t h2 = std::hash()(S::current()); + VERIFY( h != h2 ); +} + +int main() +{ + test_hash(); +}