Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove sendable checking from NIOLock and NIOLockedValueBox (#2968)
Motivation: ManagedBuffer is marked as explicitly not sendable on Swift nightly builds. NIOLock and NIOLockedValueBox used a type derived from ManagedBuffer and must be Sendable. Currently the derived type is marked as `@unchecked Sendable`. However on nightly toolchains this now conflicts with being explicitly not Sendable. Modifications: - Remove Sendable checking on NIOLock and NIOLockedValueBox Result: Fewer warnings (cherry picked from commit 6d30ec4)
- Loading branch information