Skip to content

Commit d3b660d

Browse files
committed
[stdlib] Remove FIXMEs from Array extension.
1 parent d7cf830 commit d3b660d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/public/core/Array.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1296,14 +1296,14 @@ extension Array: RangeReplaceableCollection {
12961296
// checker speed up cases where there is a large number of uses of the
12971297
// operator in the same expression.
12981298
extension Array {
1299-
@inlinable // FIXME(sil-serialize-all)
1299+
@inlinable
13001300
public static func + (lhs: Array, rhs: Array) -> Array {
13011301
var lhs = lhs
13021302
lhs.append(contentsOf: rhs)
13031303
return lhs
13041304
}
13051305

1306-
@inlinable // FIXME(sil-serialize-all)
1306+
@inlinable
13071307
public static func += (lhs: inout Array, rhs: Array) {
13081308
lhs.append(contentsOf: rhs)
13091309
}

0 commit comments

Comments
 (0)