ITADN

Add @Sendable annotation code action

#2525ClosedTabonx 创建于 2026-02-28
good first issuecode action
T
Tabonxcommented
### Description Add `@Sendable` to closures and function types for concurrency safety. **Before:** ```swift func perform(callback: @escaping () -> Void) { Task { callback() } } ``` **After:** ```swift func perform(callback: @Sendable @escaping () -> Void) { Task { callback() } } ```
关闭于 2026-03-10 1 条评论