Skip to content

Commit 93e76cd

Browse files
authored
Update BigInt.swift
1 parent f8688d2 commit 93e76cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Prototypes/BigInt.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public struct _BigInt<Word: FixedWidthInteger & UnsignedInteger> :
121121
// FIXME: This is broken on 32-bit arch w/ Word = UInt64
122122
let wordRatio = UInt.bitWidth / Word.bitWidth
123123
_sanityCheck(wordRatio != 0)
124-
for i in 0..<source.countRepresentedWords {
124+
for i in 0..<source._countRepresentedWords {
125125
var sourceWord = source._word(at: i)
126126
for _ in 0..<wordRatio {
127127
_data.append(Word(extendingOrTruncating: sourceWord))

0 commit comments

Comments
 (0)