Build Information
Successful build of FZSwiftUtils, reference main (f30acd
), with Swift 6.0 for macOS (SPM) on 3 Jun 2025 09:46:43 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Build Log
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[194/286] Compiling FZSwiftUtils Interpose.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[195/286] Compiling FZSwiftUtils NSObject+Interpose.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[196/286] Compiling FZSwiftUtils KVOWrapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[197/286] Compiling FZSwiftUtils NSObject+SelectorName.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[198/286] Compiling FZSwiftUtils OverrideSuperMethodContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[199/286] Compiling FZSwiftUtils ParametersCheck.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[200/286] Compiling FZSwiftUtils Signature.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[201/286] Compiling FZSwiftUtils _AnyClass.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[202/286] Compiling FZSwiftUtils _AnyObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[203/286] Compiling FZSwiftUtils MutableProgress.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[204/286] Compiling FZSwiftUtils NotificationToken.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[205/286] Compiling FZSwiftUtils OSHash.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[206/286] Compiling FZSwiftUtils AsyncOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[207/286] Compiling FZSwiftUtils PausableOperationQueue.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[208/286] Compiling FZSwiftUtils OutlineItem.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[209/286] Compiling FZSwiftUtils Reachability.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[210/286] Compiling FZSwiftUtils RuntimeError.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[211/286] Compiling FZSwiftUtils Swizzle.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[212/286] Compiling FZSwiftUtils Synchronized.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[213/286] Compiling FZSwiftUtils ThroughputFormatter.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[214/286] Compiling FZSwiftUtils Weak.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:172:13: warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
170 | let methodSignature = try Signature(typeEncoding: typeEncoding)
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'closureArguments' was never used; consider replacing with assignment to '_' or removing it
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
174 |
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MethodHooking/Implementation/ParametersCheck.swift:173:13: warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
171 |
172 | let closureArguments = Array(closureSignature.argumentTypes.dropFirst(2))
173 | let methodArguments = Array(methodSignature.argumentTypes.dropFirst(2))
| `- warning: initialization of immutable value 'methodArguments' was never used; consider replacing with assignment to '_' or removing it
174 |
175 | let methodEncoding = "@" + methodSignature.argumentTypes.toSignatureString().dropFirst(2)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// A progress that allows to add and remove children progresses.
12 | open class MutableProgress: Progress {
| `- warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
13 |
14 | var observedChildren = SynchronizedDictionary<Progress, KeyValueObserver<Progress>>()
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
15 | Always call `super` when overriding `start()`, `cancel()`, `finish()`, `pause()` or `resume()`.
16 | */
17 | open class AsyncOperation: Operation, Pausable {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
18 |
19 | private let stateQueue = DispatchQueue(label: Bundle.main.bundleIdentifier ?? Bundle.main.bundlePath + ".AsyncOperationState", attributes: .concurrent)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
200 |
201 | /// An asynchronous, pausable operation executing a specifed handler.
202 | open class AsyncBlockOperation: AsyncOperation {
| `- warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
203 | /// The handler to execute.
204 | public let closure: (AsyncBlockOperation) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
101 | }
102 |
103 | internal class BlockOperation: Operation {
| `- warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
104 | let block: ()->()
105 | init(_ block: @escaping () -> Void) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
23 | Operations conforming to ``Pausable`` can be paused by pausing the operation queue via ``pause()``.
24 | */
25 | open class PausableOperationQueue: OperationQueue {
| `- warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
26 | var allOperations: SynchronizedArray<Operation> = []
27 |
[215/286] Compiling FZSwiftUtils Locale+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[216/286] Compiling FZSwiftUtils Locale+Currency.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[217/286] Compiling FZSwiftUtils Logger+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[218/286] Compiling FZSwiftUtils Accelerate+Operator.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[219/286] Compiling FZSwiftUtils ApproximateEquatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[220/286] Compiling FZSwiftUtils Bool+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[221/286] Compiling FZSwiftUtils CGPoint+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[222/286] Compiling FZSwiftUtils CGRect+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[223/286] Compiling FZSwiftUtils CGSize+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[224/286] Compiling FZSwiftUtils FloatingPoint+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[225/286] Compiling FZSwiftUtils FloatingPoint+Initializable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[226/286] Compiling FZSwiftUtils FloatingPoint+Rounding.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[227/286] Compiling FZSwiftUtils Int+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[228/286] Compiling FZSwiftUtils MultiplicativeArithmetic.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[229/286] Compiling FZSwiftUtils NSNumber+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[230/286] Compiling FZSwiftUtils NSRange+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[231/286] Compiling FZSwiftUtils NSValue+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[232/286] Compiling FZSwiftUtils Number+Interpolate.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[233/286] Compiling FZSwiftUtils Number+String.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[234/286] Compiling FZSwiftUtils NumberFormatter+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[235/286] Compiling FZSwiftUtils NumberFormatter+String.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[236/286] Compiling FZSwiftUtils Range+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[237/286] Compiling FZSwiftUtils TimeInterval+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[238/286] Compiling FZSwiftUtils Mirror+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGPoint+.swift:176:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
174 | }
175 |
176 | extension CGPoint: Hashable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
177 | public func hash(into hasher: inout Hasher) {
178 | hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGRect+.swift:1051:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
1049 | }
1050 |
1051 | extension CGRect: Hashable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
1052 | public func hash(into hasher: inout Hasher) {
1053 | hasher.combine(size)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:378:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
376 | }
377 |
378 | extension CGSize: Comparable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
379 | public static func < (lhs: CGSize, rhs: CGSize) -> Bool {
380 | lhs.area < rhs.area
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Math & Geometry/CGSize+.swift:384:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
382 | }
383 |
384 | extension CGSize: Hashable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
385 | public func hash(into hasher: inout Hasher) {
386 | hasher.combine(width)
[239/286] Compiling FZSwiftUtils Bundle+.swift
[240/286] Compiling FZSwiftUtils CSSearchableItem+.swift
[241/286] Compiling FZSwiftUtils CVTimeStamp+.swift
[242/286] Compiling FZSwiftUtils Array+.swift
[243/286] Compiling FZSwiftUtils Collection+.swift
[244/286] Compiling FZSwiftUtils Collection+Advance.swift
[245/286] Compiling FZSwiftUtils Collection+Average.swift
[246/286] Compiling FZSwiftUtils Collection+Chunk.swift
[247/286] Compiling FZSwiftUtils Collection+Indexed.swift
[248/286] Compiling FZSwiftUtils Collection+LazySplit.swift
[249/286] Compiling FZSwiftUtils Collection+Random.swift
[250/286] Compiling FZSwiftUtils Collection+Sort.swift
[251/286] Compiling FZSwiftUtils CollectionDifference+.swift
[252/286] Compiling FZSwiftUtils Dictionary+.swift
[253/286] Compiling FZSwiftUtils Dictionary+Merge.swift
[254/286] Compiling FZSwiftUtils IndexPath+.swift
[255/286] Compiling FZSwiftUtils OptionSet+.swift
[256/286] Compiling FZSwiftUtils Sequence+.swift
[257/286] Compiling FZSwiftUtils Sequence+Collect.swift
[258/286] Compiling FZSwiftUtils Sequence+Concurrency.swift
[259/286] Compiling FZSwiftUtils Sequence+Difference.swift
[260/286] Compiling FZSwiftUtils Sequence+Flat.swift
[261/286] Compiling FZSwiftUtils Sequence+Identifable.swift
[262/286] Compiling FZSwiftUtils Sequence+Keypath.swift
[263/286] Compiling FZSwiftUtils NSRegularExpression+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[264/286] Compiling FZSwiftUtils NSTextCheckingResult+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[265/286] Compiling FZSwiftUtils String+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[266/286] Compiling FZSwiftUtils String+HTML.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[267/286] Compiling FZSwiftUtils String+Height.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[268/286] Compiling FZSwiftUtils String+Match.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[269/286] Compiling FZSwiftUtils String+Random.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[270/286] Compiling FZSwiftUtils XMLNode+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[271/286] Compiling FZSwiftUtils NSUI Typealias.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[272/286] Compiling FZSwiftUtils Operator.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[273/286] Compiling FZSwiftUtils CodableDefault.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[274/286] Compiling FZSwiftUtils DateValueCodable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[275/286] Compiling FZSwiftUtils PropertyWrappers.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[276/286] Compiling FZSwiftUtils ApplicationInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[277/286] Compiling FZSwiftUtils FileTypeDefinition.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[278/286] Compiling FZSwiftUtils AssociatedValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[279/286] Compiling FZSwiftUtils BaseArray.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[280/286] Compiling FZSwiftUtils BaseDictionary.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[281/286] Compiling FZSwiftUtils Deque.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[282/286] Compiling FZSwiftUtils OrderedDictionary.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[283/286] Compiling FZSwiftUtils OrderedSet.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[284/286] Compiling FZSwiftUtils Queue.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[285/286] Compiling FZSwiftUtils SelectableArray.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
[286/286] Compiling FZSwiftUtils Stack.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/XMLNode+.swift:399:1: warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
397 | }
398 | }
399 | extension XMLNode.Kind: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'Kind' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
400 | public var description: String {
401 | switch self {
Build complete! (20.90s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "FZSwiftUtils",
"name" : "FZSwiftUtils",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "14.0"
},
{
"name" : "maccatalyst",
"version" : "14.0"
},
{
"name" : "tvos",
"version" : "14.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "FZSwiftUtils",
"targets" : [
"FZSwiftUtils"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "_SuperBuilder",
"module_type" : "ClangTarget",
"name" : "_SuperBuilder",
"path" : "Sources/FZSwiftUtils+ObjC/SuperBuilder",
"product_memberships" : [
"FZSwiftUtils"
],
"sources" : [
"SuperBuilder.m"
],
"type" : "library"
},
{
"c99name" : "_OCSources",
"module_type" : "ClangTarget",
"name" : "_OCSources",
"path" : "Sources/FZSwiftUtils+ObjC/OCSources",
"product_memberships" : [
"FZSwiftUtils"
],
"sources" : [
"SHFFITypeContext.m",
"SHMethodSignature.m",
"SHObjectiveCUtilities.m"
],
"target_dependencies" : [
"_Libffi"
],
"type" : "library"
},
{
"c99name" : "_Libffi",
"module_type" : "ClangTarget",
"name" : "_Libffi",
"path" : "Sources/FZSwiftUtils+ObjC/Libffi",
"product_memberships" : [
"FZSwiftUtils"
],
"sources" : [
"src/aarch64/ffi_arm64.c",
"src/aarch64/sysv_arm64.S",
"src/arm/ffi_armv7.c",
"src/arm/sysv_armv7.S",
"src/closures.c",
"src/debug.c",
"src/dlmalloc.c",
"src/java_raw_api.c",
"src/prep_cif.c",
"src/raw_api.c",
"src/tramp.c",
"src/types.c",
"src/x86/ffi64_x86_64.c",
"src/x86/ffi_i386.c",
"src/x86/ffiw64_x86_64.c",
"src/x86/sysv_i386.S",
"src/x86/unix64_x86_64.S",
"src/x86/win64_x86_64.S"
],
"type" : "library"
},
{
"c99name" : "_ExceptionCatcher",
"module_type" : "ClangTarget",
"name" : "_ExceptionCatcher",
"path" : "Sources/FZSwiftUtils+ObjC/ExceptionCatcher",
"product_memberships" : [
"FZSwiftUtils"
],
"sources" : [
"NSObject+ExceptionCatcher.m"
],
"type" : "library"
},
{
"c99name" : "FZSwiftUtils",
"module_type" : "SwiftTarget",
"name" : "FZSwiftUtils",
"path" : "Sources/FZSwiftUtils",
"product_memberships" : [
"FZSwiftUtils"
],
"sources" : [
"Extensions/Bundle+.swift",
"Extensions/CSSearchableItem+.swift",
"Extensions/CVTimeStamp+.swift",
"Extensions/Collections/Array+.swift",
"Extensions/Collections/Collection+.swift",
"Extensions/Collections/Collection+Advance.swift",
"Extensions/Collections/Collection+Average.swift",
"Extensions/Collections/Collection+Chunk.swift",
"Extensions/Collections/Collection+Indexed.swift",
"Extensions/Collections/Collection+LazySplit.swift",
"Extensions/Collections/Collection+Random.swift",
"Extensions/Collections/Collection+Sort.swift",
"Extensions/Collections/CollectionDifference+.swift",
"Extensions/Collections/Dictionary+.swift",
"Extensions/Collections/Dictionary+Merge.swift",
"Extensions/Collections/IndexPath+.swift",
"Extensions/Collections/OptionSet+.swift",
"Extensions/Collections/Sequence+.swift",
"Extensions/Collections/Sequence+Collect.swift",
"Extensions/Collections/Sequence+Concurrency.swift",
"Extensions/Collections/Sequence+Difference.swift",
"Extensions/Collections/Sequence+Flat.swift",
"Extensions/Collections/Sequence+Identifable.swift",
"Extensions/Collections/Sequence+Keypath.swift",
"Extensions/Collections/Sequence+Occurency.swift",
"Extensions/Collections/Sequence+Sort.swift",
"Extensions/Collections/Sequence+String.swift",
"Extensions/Collections/Sequence+Unique.swift",
"Extensions/Collections/Sequence+Zip.swift",
"Extensions/Collections/Set+.swift",
"Extensions/Date & Time/Calendar+.swift",
"Extensions/Date & Time/Date+.swift",
"Extensions/Date & Time/Formatter/DateComponentsFormatter+.swift",
"Extensions/Date & Time/Formatter/DateFormatter+.swift",
"Extensions/Date & Time/Formatter/DateFormatter+Components.swift",
"Extensions/Date & Time/Formatter/DateIntervalFormatter+.swift",
"Extensions/Date & Time/Formatter/RelativeDateTimeFormatter+.swift",
"Extensions/Date & Time/NSCalendar+.swift",
"Extensions/Date & Time/TimeZone.swift",
"Extensions/DispatchQueue+.swift",
"Extensions/DispatchWorkItem+.swift",
"Extensions/Encoding & Decoding/Collection+Decode.swift",
"Extensions/Encoding & Decoding/Dictionary+Codable.swift",
"Extensions/Encoding & Decoding/JSONEncoderDecoder+.swift",
"Extensions/Encoding & Decoding/JSONEncoderDecoder+Codable.swift",
"Extensions/Enum/Enum+Displayable.swift",
"Extensions/Enum/Enum+Name.swift",
"Extensions/File & URL/FileAttributes.swift",
"Extensions/File & URL/FileManager+.swift",
"Extensions/File & URL/FileType.swift",
"Extensions/File & URL/NSMetadata+.swift",
"Extensions/File & URL/URL+.swift",
"Extensions/File & URL/URL+DuplicateFiles.swift",
"Extensions/File & URL/URL+ExtendedAttributes.swift",
"Extensions/File & URL/URL+File.swift",
"Extensions/File & URL/URL+Item.swift",
"Extensions/File & URL/URL+Iterate.swift",
"Extensions/File & URL/URL+ResourceValue.swift",
"Extensions/File & URL/URL+fileSystemItem.swift",
"Extensions/File & URL/URLResources.swift",
"Extensions/File & URL/UTType+.swift",
"Extensions/Formatter/ByteCountFormatter+.swift",
"Extensions/Formatter/MeasurementFormatter+.swift",
"Extensions/Formatter/UnitInformationStorage+.swift",
"Extensions/Hash/Digest+.swift",
"Extensions/Hash/HashFunction+.swift",
"Extensions/Hash/Hasher+.swift",
"Extensions/JSONSerialization+.swift",
"Extensions/KVO/KeyValueObservation.swift",
"Extensions/KVO/KeyValueObserver.swift",
"Extensions/KVO/NSObject+Observe.swift",
"Extensions/KeyPath+.swift",
"Extensions/Locale+.swift",
"Extensions/Locale+Currency.swift",
"Extensions/Logger+.swift",
"Extensions/Math & Geometry/Accelerate+Operator.swift",
"Extensions/Math & Geometry/ApproximateEquatable.swift",
"Extensions/Math & Geometry/Bool+.swift",
"Extensions/Math & Geometry/CGPoint+.swift",
"Extensions/Math & Geometry/CGRect+.swift",
"Extensions/Math & Geometry/CGSize+.swift",
"Extensions/Math & Geometry/FloatingPoint+.swift",
"Extensions/Math & Geometry/FloatingPoint+Initializable.swift",
"Extensions/Math & Geometry/FloatingPoint+Rounding.swift",
"Extensions/Math & Geometry/Int+.swift",
"Extensions/Math & Geometry/MultiplicativeArithmetic.swift",
"Extensions/Math & Geometry/NSNumber+.swift",
"Extensions/Math & Geometry/NSRange+.swift",
"Extensions/Math & Geometry/NSValue+.swift",
"Extensions/Math & Geometry/Number+Interpolate.swift",
"Extensions/Math & Geometry/Number+String.swift",
"Extensions/Math & Geometry/NumberFormatter+.swift",
"Extensions/Math & Geometry/NumberFormatter+String.swift",
"Extensions/Math & Geometry/Range+.swift",
"Extensions/Math & Geometry/TimeInterval+.swift",
"Extensions/Mirror+.swift",
"Extensions/NSCoder+.swift",
"Extensions/NSError+.swift",
"Extensions/NSKeyedUnarchiver+.swift",
"Extensions/NSObject/NSObject+.swift",
"Extensions/NSObject/NSObject+Copy.swift",
"Extensions/NSObject/NSObject+KeyPath.swift",
"Extensions/NSObject/NSObject+Reflection.swift",
"Extensions/NSRectEdge+.swift",
"Extensions/NSRunningApplication+.swift",
"Extensions/NSUIRectEdge+.swift",
"Extensions/NSWorkspace+.swift",
"Extensions/Networking/HTTPCookieStorage+.swift",
"Extensions/Networking/HTTPURLResponse+.swift",
"Extensions/Networking/URL+Redirect.swift",
"Extensions/Networking/URLComponents+.swift",
"Extensions/Networking/URLRequest+.swift",
"Extensions/Networking/URLResponse+.swift",
"Extensions/Networking/URLSession+.swift",
"Extensions/Networking/URLSession+Sync.swift",
"Extensions/Networking/URLSessionConfiguration+.swift",
"Extensions/Networking/URLSessionDataTask+Resume.swift",
"Extensions/Networking/URLSessionTask+.swift",
"Extensions/Notification+.swift",
"Extensions/Operation+.swift",
"Extensions/OperationQueue+.swift",
"Extensions/Predicate/NSComparisonPredicate+.swift",
"Extensions/Predicate/NSComparisonPredicate+Expression.swift",
"Extensions/Predicate/NSExpression+.swift",
"Extensions/Predicate/NSPredicate+.swift",
"Extensions/Predicate/NSPredicate+Operator.swift",
"Extensions/Predicate/Predicates.swift",
"Extensions/ProcessInfo+.swift",
"Extensions/Progress+.swift",
"Extensions/Protocol/CFType.swift",
"Extensions/Protocol/CaseIterable+.swift",
"Extensions/Protocol/Comparable+.swift",
"Extensions/Protocol/Comparable+Clamp.swift",
"Extensions/Protocol/Decodable+.swift",
"Extensions/Protocol/Equatable+.swift",
"Extensions/Protocol/OptionSetDescribable.swift",
"Extensions/Protocol/Optional+.swift",
"Extensions/Protocol/SortComparator+.swift",
"Extensions/Result+.swift",
"Extensions/Selector+.swift",
"Extensions/String/AttributedString+.swift",
"Extensions/String/Character+.swift",
"Extensions/String/CharacterSet+.swift",
"Extensions/String/NSAttributedString+.swift",
"Extensions/String/NSRegularExpression+.swift",
"Extensions/String/NSTextCheckingResult+.swift",
"Extensions/String/String+.swift",
"Extensions/String/String+HTML.swift",
"Extensions/String/String+Height.swift",
"Extensions/String/String+Match.swift",
"Extensions/String/String+Random.swift",
"Extensions/XMLNode+.swift",
"NSUI Typealias.swift",
"Operator.swift",
"PropertyWrappers/CodableDefault.swift",
"PropertyWrappers/DateValueCodable.swift",
"PropertyWrappers/PropertyWrappers.swift",
"Utils/ApplicationBundle/ApplicationInfo.swift",
"Utils/ApplicationBundle/FileTypeDefinition.swift",
"Utils/AssociatedValue.swift",
"Utils/Collections/BaseArray.swift",
"Utils/Collections/BaseDictionary.swift",
"Utils/Collections/Deque.swift",
"Utils/Collections/OrderedDictionary.swift",
"Utils/Collections/OrderedSet.swift",
"Utils/Collections/Queue.swift",
"Utils/Collections/SelectableArray.swift",
"Utils/Collections/Stack.swift",
"Utils/Collections/SynchronizedArray.swift",
"Utils/Collections/SynchronizedDictionary.swift",
"Utils/Datatypes/DataSize.swift",
"Utils/Datatypes/FractionalPoint.swift",
"Utils/Datatypes/NSRectCorner.swift",
"Utils/Datatypes/Point3D.swift",
"Utils/Datatypes/RectEdge.swift",
"Utils/Datatypes/RectEdgeCorner.swift",
"Utils/Datatypes/Rotation.swift",
"Utils/Datatypes/RotationAngle.swift",
"Utils/Datatypes/Scale.swift",
"Utils/Datatypes/TimeDuration.swift",
"Utils/Defaults.swift",
"Utils/FSEventMonitor/FSEvent+Actions.swift",
"Utils/FSEventMonitor/FSEvent+Flags.swift",
"Utils/FSEventMonitor/FSEvent+ItemType.swift",
"Utils/FSEventMonitor/FSEvent.swift",
"Utils/FSEventMonitor/FSEventMonitor+Options.swift",
"Utils/FSEventMonitor/FSEventMonitor.swift",
"Utils/FileConvertible.swift",
"Utils/ImageSource/AsymcSequence/CGImageFrame.swift",
"Utils/ImageSource/AsymcSequence/ImageFrameSequence.swift",
"Utils/ImageSource/AsymcSequence/ImageSequence.swift",
"Utils/ImageSource/ImageOptions.swift",
"Utils/ImageSource/ImageProperties/EXIF+HumanReadable.swift",
"Utils/ImageSource/ImageProperties/EXIFImageProperties.swift",
"Utils/ImageSource/ImageProperties/Extended/Canon.swift",
"Utils/ImageSource/ImageProperties/Extended/ColorModel.swift",
"Utils/ImageSource/ImageProperties/Extended/EXIF+Extended.swift",
"Utils/ImageSource/ImageProperties/Extended/GPS.swift",
"Utils/ImageSource/ImageProperties/Extended/ImageProperties+Keys.swift",
"Utils/ImageSource/ImageProperties/Extended/Nikon.swift",
"Utils/ImageSource/ImageProperties/Extended/PNG+Extended.swift",
"Utils/ImageSource/ImageProperties/Extended/TIFF+Extended.swift",
"Utils/ImageSource/ImageProperties/GIFImageProperties.swift",
"Utils/ImageSource/ImageProperties/HEICImageProperties.swift",
"Utils/ImageSource/ImageProperties/IPTCImageProperties.swift",
"Utils/ImageSource/ImageProperties/ImageProperties.swift",
"Utils/ImageSource/ImageProperties/JPEGImageProperties.swift",
"Utils/ImageSource/ImageProperties/PNGImageProperties.swift",
"Utils/ImageSource/ImageProperties/TIFFImageProperties.swift",
"Utils/ImageSource/ImageSource.swift",
"Utils/KeyValueCodable.swift",
"Utils/MeasureTime.swift",
"Utils/MethodHooking/Hook/Hook+AddMethod.swift",
"Utils/MethodHooking/Hook/Hook+Class.swift",
"Utils/MethodHooking/Hook/Hook+Deinit.swift",
"Utils/MethodHooking/Hook/Hook+Object.swift",
"Utils/MethodHooking/Hook/Hook.swift",
"Utils/MethodHooking/Hooker+NSObject/NSObject+AddMethod.swift",
"Utils/MethodHooking/Hooker+NSObject/NSObject+ClassHook.swift",
"Utils/MethodHooking/Hooker+NSObject/NSObject+ClassInstanceHook.swift",
"Utils/MethodHooking/Hooker+NSObject/NSObject+Hook.swift",
"Utils/MethodHooking/Hooker+NSObject/NSObject+Unhook.swift",
"Utils/MethodHooking/Hooker/ClassHook.swift",
"Utils/MethodHooking/Hooker/ClassInstanceHook.swift",
"Utils/MethodHooking/Hooker/ObjectHook.swift",
"Utils/MethodHooking/Implementation/AnyClass+GetMethod.swift",
"Utils/MethodHooking/Implementation/AnyObject+DynamicClass.swift",
"Utils/MethodHooking/Implementation/AnyObject+HookClosures.swift",
"Utils/MethodHooking/Implementation/FFI/FFICIFContext.swift",
"Utils/MethodHooking/Implementation/FFI/FFIClosureContext.swift",
"Utils/MethodHooking/Implementation/HookCommon.swift",
"Utils/MethodHooking/Implementation/HookContext.swift",
"Utils/MethodHooking/Implementation/InsteadContext.swift",
"Utils/MethodHooking/Implementation/Interpose/Interpose+AnyHook.swift",
"Utils/MethodHooking/Implementation/Interpose/Interpose+ClassHook.swift",
"Utils/MethodHooking/Implementation/Interpose/Interpose+Error.swift",
"Utils/MethodHooking/Implementation/Interpose/Interpose+HookFinder.swift",
"Utils/MethodHooking/Implementation/Interpose/Interpose+ObjectHook.swift",
"Utils/MethodHooking/Implementation/Interpose/Interpose+Subclass.swift",
"Utils/MethodHooking/Implementation/Interpose/Interpose.swift",
"Utils/MethodHooking/Implementation/Interpose/NSObject+Interpose.swift",
"Utils/MethodHooking/Implementation/KVOWrapper.swift",
"Utils/MethodHooking/Implementation/NSObject+SelectorName.swift",
"Utils/MethodHooking/Implementation/OverrideSuperMethodContext.swift",
"Utils/MethodHooking/Implementation/ParametersCheck.swift",
"Utils/MethodHooking/Implementation/Signature.swift",
"Utils/MethodHooking/Implementation/_AnyClass.swift",
"Utils/MethodHooking/Implementation/_AnyObject.swift",
"Utils/MutableProgress.swift",
"Utils/NotificationToken.swift",
"Utils/OSHash.swift",
"Utils/Operation/AsyncOperation.swift",
"Utils/Operation/PausableOperationQueue.swift",
"Utils/OutlineItem.swift",
"Utils/Reachability.swift",
"Utils/RuntimeError.swift",
"Utils/Swizzle.swift",
"Utils/Synchronized.swift",
"Utils/ThroughputFormatter.swift",
"Utils/Weak.swift"
],
"target_dependencies" : [
"_SuperBuilder",
"_ExceptionCatcher",
"_Libffi",
"_OCSources"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.