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 f8688d2 commit 93e76cdCopy full SHA for 93e76cd
test/Prototypes/BigInt.swift
@@ -121,7 +121,7 @@ public struct _BigInt<Word: FixedWidthInteger & UnsignedInteger> :
121
// FIXME: This is broken on 32-bit arch w/ Word = UInt64
122
let wordRatio = UInt.bitWidth / Word.bitWidth
123
_sanityCheck(wordRatio != 0)
124
- for i in 0..<source.countRepresentedWords {
+ for i in 0..<source._countRepresentedWords {
125
var sourceWord = source._word(at: i)
126
for _ in 0..<wordRatio {
127
_data.append(Word(extendingOrTruncating: sourceWord))
0 commit comments