Skip to content

Commit 9d427ce

Browse files
authored
Relax Sendable conditional conformance for AsyncJoinedBySeparatorSequence (apple#210)
1 parent 081ca79 commit 9d427ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/AsyncAlgorithms/AsyncJoinedBySeparatorSequence.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public struct AsyncJoinedBySeparatorSequence<Base: AsyncSequence, Separator: Asy
141141
}
142142

143143
extension AsyncJoinedBySeparatorSequence: Sendable
144-
where Base: Sendable, Base.Element: Sendable, Base.Element.Element: Sendable, Base.AsyncIterator: Sendable, Separator: Sendable, Separator.AsyncIterator: Sendable, Base.Element.AsyncIterator: Sendable { }
144+
where Base: Sendable, Base.Element: Sendable, Base.Element.Element: Sendable, Separator: Sendable { }
145145
extension AsyncJoinedBySeparatorSequence.Iterator: Sendable
146146
where Base: Sendable, Base.Element: Sendable, Base.Element.Element: Sendable, Base.AsyncIterator: Sendable, Separator: Sendable, Separator.AsyncIterator: Sendable, Base.Element.AsyncIterator: Sendable { }
147147
extension AsyncJoinedBySeparatorSequence.Iterator.State: Sendable

0 commit comments

Comments
 (0)