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 d1f9ac5 commit 92a1834Copy full SHA for 92a1834
src/include/utils/hashutils.h
@@ -29,7 +29,7 @@ static inline uint64
29
hash_combine64(uint64 a, uint64 b)
30
{
31
/* 0x49a0f4dd15e5a8e3 is 64bit random data */
32
- a ^= b + 0x49a0f4dd15e5a8e3 + (a << 54) + (a >> 7);
+ a ^= b + UINT64CONST(0x49a0f4dd15e5a8e3) + (a << 54) + (a >> 7);
33
return a;
34
}
35
0 commit comments