Skip to content

Commit 9c617ab

Browse files
committed
[stdlib] Temporarily disable Hasher padding
1 parent d777a9b commit 9c617ab

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

stdlib/public/core/SipHash.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,13 @@ extension Hasher {
2828
fileprivate var v1: UInt64 = 0x646f72616e646f6d
2929
fileprivate var v2: UInt64 = 0x6c7967656e657261
3030
fileprivate var v3: UInt64 = 0x7465646279746573
31+
#if false // FIXME: Temporarily disabled
3132
// The fields below are reserved for future use. They aren't currently used.
3233
fileprivate var v4: UInt64 = 0
3334
fileprivate var v5: UInt64 = 0
3435
fileprivate var v6: UInt64 = 0
3536
fileprivate var v7: UInt64 = 0
37+
#endif
3638

3739
@inline(__always)
3840
fileprivate init(rawSeed: (UInt64, UInt64)) {

0 commit comments

Comments
 (0)