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 b540445 commit 32794f0Copy full SHA for 32794f0
absl/hash/internal/hash.h
@@ -1083,7 +1083,7 @@ class ABSL_DLL MixingHashState : public HashStateBase<MixingHashState> {
1083
unsigned char significant0 = mem0;
1084
#else
1085
unsigned char significant2 = mem0;
1086
- unsigned char significant1 = mem1;
+ unsigned char significant1 = len == 2 ? mem0 : mem1;
1087
unsigned char significant0 = mem2;
1088
#endif
1089
return static_cast<uint32_t>(significant0 | //
0 commit comments