Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

fix for Xcode 16 #139

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PSOperations/Operation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public typealias PSOperation = Operation
extended readiness requirements, as well as notify many interested parties
about interesting operation state changes
*/
open class Operation: Foundation.Operation {
open class Operation: Foundation.Operation, @unchecked Sendable {

private static var psoperationContext = 0

Expand Down
2 changes: 1 addition & 1 deletion PSOperations/OperationQueue.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public typealias PSOperationQueue = OperationQueue
- Extracting generated dependencies from operation conditions
- Setting up dependencies to enforce mutual exclusivity
*/
open class OperationQueue: Foundation.OperationQueue {
open class OperationQueue: Foundation.OperationQueue, @unchecked Sendable {
open weak var delegate: OperationQueueDelegate?

override open func addOperation(_ operation: Foundation.Operation) {
Expand Down