Skip to content

Commit 43f3431

Browse files
committed
[stdlib] Fix 32-bit oversight
1 parent 825ac93 commit 43f3431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/core/Hasher.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ public struct Hasher {
425425
var state = _State(seed: seed)
426426
#if arch(i386) || arch(arm)
427427
_sanityCheck(UInt.bitWidth < UInt64.bitWidth)
428-
let tbc = _HasherTailBuffer(
428+
let tbc = _TailBuffer(
429429
tail: UInt64(truncatingIfNeeded: value),
430430
byteCount: UInt.bitWidth &>> 3)
431431
#else

0 commit comments

Comments
 (0)