Skip to content

Commit b608d45

Browse files
committed
remove @inlineable
1 parent 5349e6a commit b608d45

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Sources/IdentifiableContinuation.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ typealias Mutex = Synchronization.Mutex
5353
/// - handler: Cancellation closure executed when the current Task is cancelled. Handler is always
5454
/// called _after_ the body closure is completed.
5555
/// - Returns: The value continuation is resumed with.
56-
@inlinable
5756
public func withIdentifiableContinuation<T>(
5857
isolation: isolated (any Actor)? = #isolation,
5958
function: String = #function,
@@ -101,7 +100,6 @@ public func withIdentifiableContinuation<T>(
101100
/// - handler: Cancellation closure executed when the current Task is cancelled. Handler is always
102101
/// called _after_ the body closure is completed.
103102
/// - Returns: The value continuation is resumed with.
104-
@inlinable
105103
public func withIdentifiableThrowingContinuation<T>(
106104
isolation: isolated (any Actor)? = #isolation,
107105
function: String = #function,
@@ -150,7 +148,6 @@ public func withIdentifiableThrowingContinuation<T>(
150148
/// - handler: Cancellation closure executed when the current Task is cancelled. Handler is always called _after_ the body closure is compeled.
151149
/// - Returns: The value continuation is resumed with.
152150
@_unsafeInheritExecutor
153-
@inlinable
154151
public func withIdentifiableContinuation<T>(
155152
isolation: isolated some Actor,
156153
function: String = #function,
@@ -199,7 +196,6 @@ public func withIdentifiableContinuation<T>(
199196
/// - handler: Cancellation closure executed when the current Task is cancelled. Handler is always called _after_ the body closure is compeled.
200197
/// - Returns: The value continuation is resumed with.
201198
@_unsafeInheritExecutor
202-
@inlinable
203199
public func withIdentifiableThrowingContinuation<T>(
204200
isolation: isolated some Actor,
205201
function: String = #function,

0 commit comments

Comments
 (0)