File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1140,24 +1140,24 @@ extension Sequence {
11401140 @inlinable
11411141 public __consuming func _copyContents(
11421142 initializing buffer: UnsafeMutableBufferPointer < Element >
1143- ) -> ( Iterator , UnsafeMutableBufferPointer < Element > . Index ) {
1143+ ) -> ( Iterator , UnsafeMutableBufferPointer < Element > . Index ) {
11441144 return _copySequenceContents ( initializing: buffer)
11451145 }
11461146
11471147 @_alwaysEmitIntoClient
11481148 internal __consuming func _copySequenceContents(
11491149 initializing buffer: UnsafeMutableBufferPointer < Element >
1150- ) -> ( Iterator , UnsafeMutableBufferPointer < Element > . Index ) {
1150+ ) -> ( Iterator , UnsafeMutableBufferPointer < Element > . Index ) {
11511151 var it = self . makeIterator ( )
1152- guard var ptr = buffer. baseAddress else { return ( it, buffer. startIndex) }
1152+ guard var ptr = buffer. baseAddress else { return ( it, buffer. startIndex) }
11531153 for idx in buffer. startIndex..< buffer. count {
11541154 guard let x = it. next ( ) else {
11551155 return ( it, idx)
11561156 }
11571157 ptr. initialize ( to: x)
11581158 ptr += 1
11591159 }
1160- return ( it, buffer. endIndex)
1160+ return ( it, buffer. endIndex)
11611161 }
11621162
11631163 @inlinable
You can’t perform that action at this time.
0 commit comments