Skip to content

Commit df73981

Browse files
committed
[stdlib] Set, Dictionary: Remove bad @_effects attribute
1 parent 1529d37 commit df73981

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

stdlib/public/core/DictionaryBridging.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,6 @@ extension _CocoaDictionary: _DictionaryBuffer {
483483
}
484484

485485
@usableFromInline // FIXME(cocoa-index): Should be inlinable
486-
@_effects(releasenone)
487486
internal func formIndex(after index: inout Index, isUnique: Bool) {
488487
validate(index)
489488
if !isUnique { index = index.copy() }

stdlib/public/core/SetBridging.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,6 @@ extension _CocoaSet: _SetBuffer {
358358
}
359359

360360
@usableFromInline // FIXME(cocoa-index): Should be inlinable
361-
@_effects(releasenone)
362361
internal func formIndex(after index: inout Index, isUnique: Bool) {
363362
validate(index)
364363
if !isUnique { index = index.copy() }

0 commit comments

Comments
 (0)