Skip to content

Commit b460a1f

Browse files
authored
Revert "[Compiletime Performance] Add an overload to Data for concatination (swiftlang#1828)" (swiftlang#1847)
This reverts commit e78fc09.
1 parent 31466ac commit b460a1f

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

Sources/FoundationEssentials/Data/Data.swift

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1112,14 +1112,3 @@ extension Data : Codable {
11121112
}
11131113
}
11141114
}
1115-
1116-
1117-
extension Data {
1118-
@_alwaysEmitIntoClient
1119-
@inline(__always)
1120-
public static func + (_ lhs: Data, _ rhs: Data) -> Data {
1121-
var result = lhs
1122-
result.append(rhs)
1123-
return result
1124-
}
1125-
}

0 commit comments

Comments
 (0)