Skip to content

Commit c7be2bd

Browse files
committed
Remove @inlinable from protocol definition
Motivation: Code should be clean Modifications: Removed `@inlinable` from protocol definition Result: protocol will not have `@inlinable`
1 parent b998eb8 commit c7be2bd

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Sources/X509/CustomPrivateKey.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ public protocol CustomPrivateKey: Sendable, Hashable, PEMSerializable {
3838
/// - bytes: The data to create the signature for.
3939
/// - signatureAlgorithm: The signature algorithm to use.
4040
/// - Returns: The signature.
41-
@inlinable
4241
func signSynchronously(
4342
bytes: some DataProtocol,
4443
signatureAlgorithm: Certificate.SignatureAlgorithm
@@ -50,7 +49,6 @@ public protocol CustomPrivateKey: Sendable, Hashable, PEMSerializable {
5049
/// - bytes: The data to create the signature for.
5150
/// - signatureAlgorithm: The signature algorithm to use.
5251
/// - Returns: The signature.
53-
@inlinable
5452
func signAsynchronously(
5553
bytes: some DataProtocol & Sendable,
5654
signatureAlgorithm: Certificate.SignatureAlgorithm

0 commit comments

Comments
 (0)