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.
2 parents 7a522a5 + 8459e11 commit e575e98Copy full SHA for e575e98
absl/hash/internal/hash.h
@@ -1136,7 +1136,8 @@ class ABSL_DLL MixingHashState : public HashStateBase<MixingHashState> {
1136
// probably per-build and not per-process.
1137
ABSL_ATTRIBUTE_ALWAYS_INLINE static uint64_t Seed() {
1138
#if (!defined(__clang__) || __clang_major__ > 11) && \
1139
- !defined(__apple_build_version__)
+ (!defined(__apple_build_version__) || \
1140
+ __apple_build_version__ >= 19558921) // Xcode 12
1141
return static_cast<uint64_t>(reinterpret_cast<uintptr_t>(&kSeed));
1142
#else
1143
// Workaround the absence of
0 commit comments