mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[stdlib] Remove inlineable annotation from transparent functions (#17800)
* Remove inlineable annotation from transparent functions
This commit is contained in:
@@ -448,7 +448,6 @@ public protocol ExpressibleByExtendedGraphemeClusterLiteral
|
||||
extension ExpressibleByExtendedGraphemeClusterLiteral
|
||||
where ExtendedGraphemeClusterLiteralType == UnicodeScalarLiteralType {
|
||||
|
||||
@inlinable // FIXME(sil-serialize-all)
|
||||
@_transparent
|
||||
public init(unicodeScalarLiteral value: ExtendedGraphemeClusterLiteralType) {
|
||||
self.init(extendedGraphemeClusterLiteral: value)
|
||||
@@ -514,7 +513,6 @@ public protocol ExpressibleByStringLiteral
|
||||
extension ExpressibleByStringLiteral
|
||||
where StringLiteralType == ExtendedGraphemeClusterLiteralType {
|
||||
|
||||
@inlinable // FIXME(sil-serialize-all)
|
||||
@_transparent
|
||||
public init(extendedGraphemeClusterLiteral value: StringLiteralType) {
|
||||
self.init(stringLiteral: value)
|
||||
|
||||
Reference in New Issue
Block a user