Skip to content

Commit 1465459

Browse files
committed
stdlib: remove some @_inlineable that snuck in recently
1 parent a38fe37 commit 1465459

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/public/core/RangeReplaceableCollection.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@ extension RangeReplaceableCollection where Self: MutableCollection {
10931093
/// whether the element should be removed from the collection.
10941094
///
10951095
/// - Complexity: O(*n*), where *n* is the length of the collection.
1096-
@_inlineable
1096+
@inlinable
10971097
public mutating func removeAll(
10981098
where predicate: (Element) throws -> Bool
10991099
) rethrows {
@@ -1119,7 +1119,7 @@ extension RangeReplaceableCollection {
11191119
/// whether the element should be removed from the collection.
11201120
///
11211121
/// - Complexity: O(*n*), where *n* is the length of the collection.
1122-
@_inlineable
1122+
@inlinable
11231123
public mutating func removeAll(
11241124
where predicate: (Element) throws -> Bool
11251125
) rethrows {

0 commit comments

Comments
 (0)