We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd4dc55 commit ce94ae3Copy full SHA for ce94ae3
1 file changed
compiler/src/modules/fx.rs
@@ -39,9 +39,8 @@ impl FxBuildHasher {
39
}
40
41
42
-/// Avalanche mixer: one bit difference spreads across all 64 bits.
43
#[inline]
44
-fn murmur3_fmix64(mut h: u64) -> u64 {
+fn murmur3_fmix64(mut h: u64) -> u64 { // Avalanche mixer: one bit difference spreads across all 64 bits.
45
h ^= h >> 33;
46
h = h.wrapping_mul(0xff51afd7ed558ccd);
47
0 commit comments