File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ func _deallocateUninitializedArray<Element>(
6868#if !INTERNAL_CHECKS_ENABLED
6969@_alwaysEmitIntoClient
7070@_semantics ( " array.finalize_intrinsic " )
71- @_effects ( readnone)
71+ @_effects ( readnone) @ _effects ( releasenone )
7272@_effects ( escaping array. value** => return. value**)
7373@_effects ( escaping array. value**. class*. value** => return. value**. class*. value**)
7474public // COMPILER_INTRINSIC
Original file line number Diff line number Diff line change @@ -345,7 +345,7 @@ extension _SmallString {
345345extension _SmallString {
346346 // Resiliently create from a tagged cocoa string
347347 //
348- @_effects ( readonly) // @opaque
348+ @_effects ( readonly) @ _effects ( releasenone ) // @opaque
349349 @usableFromInline // testable
350350 internal init ? ( taggedCocoa cocoa: AnyObject ) {
351351 self . init ( )
@@ -367,7 +367,7 @@ extension _SmallString {
367367 self . _invariantCheck ( )
368368 }
369369
370- @_effects ( readonly) // @opaque
370+ @_effects ( readonly) @ _effects ( releasenone ) // @opaque
371371 internal init ? ( taggedASCIICocoa cocoa: AnyObject ) {
372372 self . init ( )
373373 var success = true
Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ extension String {
230230 /// print(message)
231231 /// // Prints "If one cookie costs 2 dollars, 3 cookies cost 6 dollars."
232232 @inlinable
233- @_effects ( readonly)
233+ @_effects ( readonly) @ _effects ( releasenone )
234234 public init ( stringInterpolation: DefaultStringInterpolation ) {
235235 self = stringInterpolation. make ( )
236236 }
@@ -254,7 +254,7 @@ extension Substring {
254254 /// print(message)
255255 /// // Prints "If one cookie costs 2 dollars, 3 cookies cost 6 dollars."
256256 @inlinable
257- @_effects ( readonly)
257+ @_effects ( readonly) @ _effects ( releasenone )
258258 public init ( stringInterpolation: DefaultStringInterpolation ) {
259259 self . init ( stringInterpolation. make ( ) )
260260 }
You can’t perform that action at this time.
0 commit comments