File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1744,9 +1744,9 @@ extension Array {
17441744 }
17451745
17461746 @available ( SwiftStdlib 6 . 2 , * )
1747+ @_alwaysEmitIntoClient
17471748 public var mutableSpan : MutableSpan < Element > {
17481749 @lifetime ( & self )
1749- @_alwaysEmitIntoClient
17501750 mutating get {
17511751 // _makeMutableAndUnique*() inserts begin_cow_mutation.
17521752 // LifetimeDependence analysis inserts call to end_cow_mutation_addr since we cannot schedule it in the stdlib for mutableSpan property.
Original file line number Diff line number Diff line change @@ -1301,9 +1301,9 @@ extension ArraySlice {
13011301 }
13021302
13031303 @available ( SwiftStdlib 6 . 2 , * )
1304+ @_alwaysEmitIntoClient
13041305 public var mutableSpan : MutableSpan < Element > {
1305- @lifetime ( /*inout*/& self )
1306- @_alwaysEmitIntoClient
1306+ @lifetime ( & self )
13071307 mutating get {
13081308 // _makeMutableAndUnique*() inserts begin_cow_mutation.
13091309 // LifetimeDependence analysis inserts call to end_cow_mutation_addr since we cannot schedule it in the stdlib for mutableSpan property.
Original file line number Diff line number Diff line change @@ -173,9 +173,9 @@ extension CollectionOfOne {
173173 }
174174
175175 @available ( SwiftStdlib 6 . 2 , * )
176+ @_alwaysEmitIntoClient
176177 public var mutableSpan : MutableSpan < Element > {
177178 @lifetime ( & self )
178- @_alwaysEmitIntoClient
179179 mutating get {
180180 let pointer = unsafe UnsafeMutablePointer< Element > (
181181 Builtin . addressOfBorrow ( self )
Original file line number Diff line number Diff line change @@ -1243,9 +1243,9 @@ extension ContiguousArray {
12431243 }
12441244
12451245 @available ( SwiftStdlib 6 . 2 , * )
1246+ @_alwaysEmitIntoClient
12461247 public var mutableSpan : MutableSpan < Element > {
12471248 @lifetime ( & self )
1248- @_alwaysEmitIntoClient
12491249 mutating get {
12501250 // _makeMutableAndUnique*() inserts begin_cow_mutation.
12511251 // LifetimeDependence analysis inserts call to end_cow_mutation_addr since we cannot schedule it in the stdlib for mutableSpan property.
You can’t perform that action at this time.
0 commit comments