Skip to content

Commit aed7747

Browse files
committed
Update KeyPath.swift
1 parent 465ed1d commit aed7747

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stdlib/public/core/KeyPath.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1280,11 +1280,11 @@ internal struct ComputedArgumentSize {
12801280
}
12811281

12821282
set {
1283+
var reduced: UInt = 0
1284+
12831285
#if _pointerBitWidth(_64)
1284-
let reduced: UInt = newValue == 16 ? 1 : 0
1286+
reduced = newValue == 16 ? 1 : 0
12851287
#elseif _pointerBitWidth(_32)
1286-
let reduced: UInt
1287-
12881288
switch newValue {
12891289
case 8:
12901290
reduced = 1

0 commit comments

Comments
 (0)