Build Information
Successful build of FZSwiftUtils, reference main (3b793f
), with Swift 6.0 for macOS (SPM) on 6 May 2025 02:38:38 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
463 |
464 | extension Defaults {
465 | public class Key<Value>: _AnyKey {
| `- warning: class 'Key' must restate inherited '@unchecked Sendable' conformance
466 | let defaultValueGetter: () -> Value
467 |
/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 |
[98/237] 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)
[99/237] 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)
[100/237] 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)
[101/237] 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)
[102/237] 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)
[103/237] 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)
[104/237] 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)
[105/237] 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)
[106/237] 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)
[107/237] 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)
[108/237] 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)
[109/237] 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)
[110/237] 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)
[111/237] 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)
[112/237] 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)
[113/237] 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)
[114/237] 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)
[115/237] 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)
[116/237] 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)
[117/237] 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)
[118/237] 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)
[119/237] Compiling FZSwiftUtils NSCoder+.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)
[120/237] Compiling FZSwiftUtils NSError+.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)
[121/237] Compiling FZSwiftUtils NSKeyedUnarchiver+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[122/237] Compiling FZSwiftUtils Interpose+AnyHook.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[123/237] Compiling FZSwiftUtils Interpose+ClassHook.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[124/237] Compiling FZSwiftUtils Interpose+Error.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[125/237] Compiling FZSwiftUtils Interpose+HookFinder.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[126/237] Compiling FZSwiftUtils Interpose+ObjectHook+Optional.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[127/237] Compiling FZSwiftUtils Interpose+ObjectHook.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[128/237] Compiling FZSwiftUtils Interpose+Subclass.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[129/237] Compiling FZSwiftUtils Interpose.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[130/237] Compiling FZSwiftUtils KVObserver.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[131/237] Compiling FZSwiftUtils KeyValueObservation.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[132/237] Compiling FZSwiftUtils KeyValueObserver.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[133/237] Compiling FZSwiftUtils NSObject+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[134/237] Compiling FZSwiftUtils NSObject+KeyPath.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[135/237] Compiling FZSwiftUtils NSObject+Observe.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[136/237] Compiling FZSwiftUtils NSObject+Reflection.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[137/237] Compiling FZSwiftUtils NSObject+Swizzle.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[138/237] Compiling FZSwiftUtils NSRectEdge+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[139/237] Compiling FZSwiftUtils NSRunningApplication+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[140/237] Compiling FZSwiftUtils NSUIRectEdge+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[141/237] Compiling FZSwiftUtils NSWorkspace+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[142/237] Compiling FZSwiftUtils HTTPCookieStorage+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[143/237] Compiling FZSwiftUtils HTTPURLResponse+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/NSUIRectEdge+.swift:22:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
20 | }
21 |
22 | extension NSDirectionalRectEdge: Hashable, Codable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | /// The leading and trailing edge of the rectangle.
24 | public static var width: NSDirectionalRectEdge = [.leading, .trailing]
[144/237] Compiling FZSwiftUtils FileType.swift
[145/237] Compiling FZSwiftUtils NSMetadata+.swift
[146/237] Compiling FZSwiftUtils URL+.swift
[147/237] Compiling FZSwiftUtils URL+DuplicateFiles.swift
[148/237] Compiling FZSwiftUtils URL+ExtendedAttributes.swift
[149/237] Compiling FZSwiftUtils URL+File.swift
[150/237] Compiling FZSwiftUtils URL+Item.swift
[151/237] Compiling FZSwiftUtils URL+Iterate.swift
[152/237] Compiling FZSwiftUtils URL+ResourceValue.swift
[153/237] Compiling FZSwiftUtils URL+fileSystemItem.swift
[154/237] Compiling FZSwiftUtils URLResources.swift
[155/237] Compiling FZSwiftUtils UTType+.swift
[156/237] Compiling FZSwiftUtils ByteCountFormatter+.swift
[157/237] Compiling FZSwiftUtils MeasurementFormatter+.swift
[158/237] Compiling FZSwiftUtils UnitInformationStorage+.swift
[159/237] Compiling FZSwiftUtils Digest+.swift
[160/237] Compiling FZSwiftUtils HashFunction+.swift
[161/237] Compiling FZSwiftUtils Hasher+.swift
[162/237] Compiling FZSwiftUtils JSONSerialization+.swift
[163/237] Compiling FZSwiftUtils KeyPath+.swift
[164/237] Compiling FZSwiftUtils Locale+.swift
[165/237] Compiling FZSwiftUtils Locale+Currency.swift
[166/237] Compiling FZSwiftUtils Logger+.swift
[167/237] Compiling FZSwiftUtils Sequence+Sort.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[168/237] Compiling FZSwiftUtils Sequence+String.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[169/237] Compiling FZSwiftUtils Sequence+Unique.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[170/237] Compiling FZSwiftUtils Sequence+Zip.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[171/237] Compiling FZSwiftUtils Set+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[172/237] Compiling FZSwiftUtils Calendar+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[173/237] Compiling FZSwiftUtils Date+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[174/237] Compiling FZSwiftUtils DateComponentsFormatter+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[175/237] Compiling FZSwiftUtils DateFormatter+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[176/237] Compiling FZSwiftUtils DateFormatter+Components.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[177/237] Compiling FZSwiftUtils DateIntervalFormatter+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[178/237] Compiling FZSwiftUtils RelativeDateTimeFormatter+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[179/237] Compiling FZSwiftUtils NSCalendar+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[180/237] Compiling FZSwiftUtils TimeZone.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[181/237] Compiling FZSwiftUtils DispatchQueue+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[182/237] Compiling FZSwiftUtils DispatchWorkItem+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[183/237] Compiling FZSwiftUtils Collection+Decode.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[184/237] Compiling FZSwiftUtils Dictionary+Codable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[185/237] Compiling FZSwiftUtils JSONEncoderDecoder+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[186/237] Compiling FZSwiftUtils JSONEncoderDecoder+Codable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[187/237] Compiling FZSwiftUtils Enum+Displayable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[188/237] Compiling FZSwiftUtils Enum+Name.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[189/237] Compiling FZSwiftUtils FileAttributes.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[190/237] Compiling FZSwiftUtils FileManager+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Collections/Set+.swift:119:1: warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
117 | }
118 |
119 | extension Set: Comparable where Element: Comparable {
| |- warning: extension declares a conformance of imported type 'Set' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
120 | public static func < (lhs: Set<Element>, rhs: Set<Element>) -> Bool {
121 | for (leftElement, rightElement) in zip(lhs, rhs) {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Calendar+.swift:10:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Calendar.Component: CaseIterable {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | /// Returns an array containing all calendar components.
12 | public static var allCases: [Calendar.Component] {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/Date & Time/Date+.swift:165:14: warning: result of call to 'isBetween' is unused
163 |
164 | func sdsds() {
165 | self.isBetween(Date()...Date())
| `- warning: result of call to 'isBetween' is unused
166 | }
167 |
[191/237] Compiling FZSwiftUtils Comparable+Clamp.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[192/237] Compiling FZSwiftUtils Decodable+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[193/237] Compiling FZSwiftUtils Equatable+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[194/237] Compiling FZSwiftUtils OptionSetDescribable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[195/237] Compiling FZSwiftUtils Optional+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[196/237] Compiling FZSwiftUtils SortComparator+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[197/237] Compiling FZSwiftUtils Result+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[198/237] Compiling FZSwiftUtils Selector+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[199/237] Compiling FZSwiftUtils AttributedString+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[200/237] Compiling FZSwiftUtils Character+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[201/237] Compiling FZSwiftUtils CharacterSet+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[202/237] Compiling FZSwiftUtils NSAttributedString+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[203/237] Compiling FZSwiftUtils NSRegularExpression+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[204/237] Compiling FZSwiftUtils NSTextCheckingResult+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[205/237] Compiling FZSwiftUtils String+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[206/237] Compiling FZSwiftUtils String+HTML.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[207/237] Compiling FZSwiftUtils String+Height.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[208/237] Compiling FZSwiftUtils String+Match.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[209/237] Compiling FZSwiftUtils String+Random.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[210/237] Compiling FZSwiftUtils XMLNode+.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[211/237] Compiling FZSwiftUtils NSUI Typealias.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[212/237] Compiling FZSwiftUtils Operator.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[213/237] Compiling FZSwiftUtils CodableDefault.swift
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:869:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
867 | public var fileTypeIdentifier: String?
868 |
869 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
870 | public var fileType: UTType? {
871 | get {
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Extensions/String/NSAttributedString+.swift:960:10: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
958 | public var fileTypeIdentifier: String?
959 |
960 | @available (macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
| `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
961 | public var fileType: UTType? {
962 | get {
/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 {
[214/237] Compiling FZSwiftUtils Bundle+.swift
[215/237] Compiling FZSwiftUtils CVTimeStamp+.swift
[216/237] Compiling FZSwiftUtils Array+.swift
[217/237] Compiling FZSwiftUtils Collection+.swift
[218/237] Compiling FZSwiftUtils Collection+Advance.swift
[219/237] Compiling FZSwiftUtils Collection+Average.swift
[220/237] Compiling FZSwiftUtils Collection+Chunk.swift
[221/237] Compiling FZSwiftUtils Collection+Indexed.swift
[222/237] Compiling FZSwiftUtils Collection+LazySplit.swift
[223/237] Compiling FZSwiftUtils Collection+Random.swift
[224/237] Compiling FZSwiftUtils Collection+Sort.swift
[225/237] Compiling FZSwiftUtils CollectionDifference+.swift
[226/237] Compiling FZSwiftUtils Dictionary+.swift
[227/237] Compiling FZSwiftUtils Dictionary+Merge.swift
[228/237] Compiling FZSwiftUtils IndexPath+.swift
[229/237] Compiling FZSwiftUtils OptionSet+.swift
[230/237] Compiling FZSwiftUtils Sequence+.swift
[231/237] Compiling FZSwiftUtils Sequence+Collect.swift
[232/237] Compiling FZSwiftUtils Sequence+Concurrency.swift
[233/237] Compiling FZSwiftUtils Sequence+Difference.swift
[234/237] Compiling FZSwiftUtils Sequence+Flat.swift
[235/237] Compiling FZSwiftUtils Sequence+Identifable.swift
[236/237] Compiling FZSwiftUtils Sequence+Keypath.swift
[237/237] Compiling FZSwiftUtils Sequence+Occurency.swift
Build complete! (19.92s)
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" : "_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/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/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/Interpose/Interpose+AnyHook.swift",
"Extensions/NSObject/Interpose/Interpose+ClassHook.swift",
"Extensions/NSObject/Interpose/Interpose+Error.swift",
"Extensions/NSObject/Interpose/Interpose+HookFinder.swift",
"Extensions/NSObject/Interpose/Interpose+ObjectHook+Optional.swift",
"Extensions/NSObject/Interpose/Interpose+ObjectHook.swift",
"Extensions/NSObject/Interpose/Interpose+Subclass.swift",
"Extensions/NSObject/Interpose/Interpose.swift",
"Extensions/NSObject/KVO/KVObserver.swift",
"Extensions/NSObject/KVO/KeyValueObservation.swift",
"Extensions/NSObject/KVO/KeyValueObserver.swift",
"Extensions/NSObject/NSObject+.swift",
"Extensions/NSObject/NSObject+KeyPath.swift",
"Extensions/NSObject/NSObject+Observe.swift",
"Extensions/NSObject/NSObject+Reflection.swift",
"Extensions/NSObject/NSObject+Swizzle.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/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"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.