Replace UnsafeSendable with @unchecked Sendable in the standard library.

This commit is contained in:
Doug Gregor
2021-11-12 07:56:10 -08:00
parent ffd435d4b2
commit 353daabf8d
13 changed files with 24 additions and 24 deletions

View File

@@ -1426,5 +1426,5 @@ extension ContiguousArray {
}
}
extension ContiguousArray: Sendable, UnsafeSendable
extension ContiguousArray: @unchecked Sendable
where Element: Sendable { }