We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dba7a3e commit 8a634f6Copy full SHA for 8a634f6
libcxx/src/stacktrace/trace.cpp
@@ -55,7 +55,7 @@ _LIBCPP_EXPORTED_FROM_ABI string _Trace::to_string() const {
55
#endif // _LIBCPP_HAS_LOCALIZATION
56
57
_LIBCPP_EXPORTED_FROM_ABI size_t _Trace::hash() const {
58
- size_t __ret = 0xc3a5c85c97cb3127ull; // just a big prime number; taken from __functional/hash.h
+ size_t __ret = size_t(0xc3a5c85c97cb3127ull); // taken from __functional/hash.h
59
for (_Entry const& __e : __entry_iters_()) {
60
__ret = (__ret << 1) ^ __e.hash();
61
}
0 commit comments