Skip to content

Commit 9a928df

Browse files
committed
dont need to require sendable on carrier
1 parent 8bbbfa3 commit 9a928df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/Instrumentation/Instrument.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public protocol _SwiftInstrumentationSendable {}
2424
/// Conforming types are used to extract values from a specific `Carrier`.
2525
public protocol Extractor: _SwiftInstrumentationSendable {
2626
/// The carrier to extract values from.
27-
associatedtype Carrier: Sendable
27+
associatedtype Carrier
2828

2929
/// Extract the value for the given key from the `Carrier`.
3030
///
@@ -37,7 +37,7 @@ public protocol Extractor: _SwiftInstrumentationSendable {
3737
/// Conforming types are used to inject values into a specific `Carrier`.
3838
public protocol Injector: _SwiftInstrumentationSendable {
3939
/// The carrier to inject values into.
40-
associatedtype Carrier: Sendable
40+
associatedtype Carrier
4141

4242
/// Inject the given value for the given key into the given `Carrier`.
4343
///

0 commit comments

Comments
 (0)