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 d777a9b commit 9c617abCopy full SHA for 9c617ab
stdlib/public/core/SipHash.swift
@@ -28,11 +28,13 @@ extension Hasher {
28
fileprivate var v1: UInt64 = 0x646f72616e646f6d
29
fileprivate var v2: UInt64 = 0x6c7967656e657261
30
fileprivate var v3: UInt64 = 0x7465646279746573
31
+#if false // FIXME: Temporarily disabled
32
// The fields below are reserved for future use. They aren't currently used.
33
fileprivate var v4: UInt64 = 0
34
fileprivate var v5: UInt64 = 0
35
fileprivate var v6: UInt64 = 0
36
fileprivate var v7: UInt64 = 0
37
+#endif
38
39
@inline(__always)
40
fileprivate init(rawSeed: (UInt64, UInt64)) {
0 commit comments