Skip to content

Commit 8a634f6

Browse files
mingw 32-bit fix
1 parent dba7a3e commit 8a634f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/src/stacktrace/trace.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ _LIBCPP_EXPORTED_FROM_ABI string _Trace::to_string() const {
5555
#endif // _LIBCPP_HAS_LOCALIZATION
5656

5757
_LIBCPP_EXPORTED_FROM_ABI size_t _Trace::hash() const {
58-
size_t __ret = 0xc3a5c85c97cb3127ull; // just a big prime number; taken from __functional/hash.h
58+
size_t __ret = size_t(0xc3a5c85c97cb3127ull); // taken from __functional/hash.h
5959
for (_Entry const& __e : __entry_iters_()) {
6060
__ret = (__ret << 1) ^ __e.hash();
6161
}

0 commit comments

Comments
 (0)