Skip to content

Commit 258c5b5

Browse files
committed
Remove inlinable, aEIC takes care of it
1 parent 53a2c3a commit 258c5b5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

stdlib/public/core/Array.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1219,7 +1219,7 @@ extension Array: RangeReplaceableCollection {
12191219
/// - Complexity: O(*m*) on average, where *m* is the length of
12201220
/// `newElements`, over many calls to `append(contentsOf:)` on the same
12211221
/// array.
1222-
@inlinable @_alwaysEmitIntoClient
1222+
@_alwaysEmitIntoClient
12231223
@_semantics("array.append_contentsOf")
12241224
@_effects(notEscaping self.value**)
12251225
public mutating func append(contentsOf newElements: __owned some Collection<Element>) {

stdlib/public/core/ArraySlice.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@ extension ArraySlice: RangeReplaceableCollection {
946946
/// - Complexity: O(*m*) on average, where *m* is the length of
947947
/// `newElements`, over many calls to `append(contentsOf:)` on the same
948948
/// array.
949-
@inlinable @_alwaysEmitIntoClient
949+
@_alwaysEmitIntoClient
950950
@_semantics("array.append_contentsOf")
951951
@_effects(notEscaping self.value**)
952952
public mutating func append(contentsOf newElements: __owned some Collection<Element>) {

stdlib/public/core/ContiguousArray.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ extension ContiguousArray: RangeReplaceableCollection {
836836
/// - Complexity: O(*m*) on average, where *m* is the length of
837837
/// `newElements`, over many calls to `append(contentsOf:)` on the same
838838
/// array.
839-
@inlinable @_alwaysEmitIntoClient
839+
@_alwaysEmitIntoClient
840840
@_effects(notEscaping self.value**)
841841
@_semantics("array.append_contentsOf")
842842
public mutating func append(

0 commit comments

Comments
 (0)