Skip to content

Commit 716bbfd

Browse files
committed
Build fix
1 parent 5d593ec commit 716bbfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/core/ContiguousArrayBuffer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@ extension Sequence {
10631063
internal func _copySequenceToContiguousArray<
10641064
S: Sequence
10651065
>(_ source: S) -> ContiguousArray<S.Element> {
1066-
let contigArray = withContiguousStorageIfAvailable {
1066+
let contigArray = source.withContiguousStorageIfAvailable {
10671067
_copyCollectionToContiguousArray($0)
10681068
}
10691069
if let contigArray {

0 commit comments

Comments
 (0)