Build Information
Successful build of RomanNumeralKit, reference 1.2.1 (738d9e
), with Swift 6.1 for tvOS using Xcode 16.3 on 26 Apr 2025 13:07:06 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme RomanNumeralKit -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11724:12: note: add '@MainActor' to make let 'MMMCM' part of global actor 'MainActor'
public let MMMCM = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11724:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCM = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11727:12: warning: let 'MMMCMI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11727:12: note: add '@MainActor' to make let 'MMMCMI' part of global actor 'MainActor'
public let MMMCMI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11727:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11730:12: warning: let 'MMMCMII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11730:12: note: add '@MainActor' to make let 'MMMCMII' part of global actor 'MainActor'
public let MMMCMII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11730:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11733:12: warning: let 'MMMCMIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11733:12: note: add '@MainActor' to make let 'MMMCMIII' part of global actor 'MainActor'
public let MMMCMIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11733:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11736:12: warning: let 'MMMCMIV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .IV])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11736:12: note: add '@MainActor' to make let 'MMMCMIV' part of global actor 'MainActor'
public let MMMCMIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .IV])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11736:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .IV])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11739:12: warning: let 'MMMCMV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .V])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11739:12: note: add '@MainActor' to make let 'MMMCMV' part of global actor 'MainActor'
public let MMMCMV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .V])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11739:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .V])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11742:12: warning: let 'MMMCMVI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .V, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11742:12: note: add '@MainActor' to make let 'MMMCMVI' part of global actor 'MainActor'
public let MMMCMVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .V, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11742:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .V, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11745:12: warning: let 'MMMCMVII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .V, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11745:12: note: add '@MainActor' to make let 'MMMCMVII' part of global actor 'MainActor'
public let MMMCMVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .V, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11745:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .V, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11748:12: warning: let 'MMMCMVIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .V, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11748:12: note: add '@MainActor' to make let 'MMMCMVIII' part of global actor 'MainActor'
public let MMMCMVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .V, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11748:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .V, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11751:12: warning: let 'MMMCMIX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .IX])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11751:12: note: add '@MainActor' to make let 'MMMCMIX' part of global actor 'MainActor'
public let MMMCMIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .IX])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11751:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .IX])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11754:12: warning: let 'MMMCMX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11754:12: note: add '@MainActor' to make let 'MMMCMX' part of global actor 'MainActor'
public let MMMCMX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11754:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11757:12: warning: let 'MMMCMXI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11757:12: note: add '@MainActor' to make let 'MMMCMXI' part of global actor 'MainActor'
public let MMMCMXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11757:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11760:12: warning: let 'MMMCMXII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11760:12: note: add '@MainActor' to make let 'MMMCMXII' part of global actor 'MainActor'
public let MMMCMXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11760:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11763:12: warning: let 'MMMCMXIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11763:12: note: add '@MainActor' to make let 'MMMCMXIII' part of global actor 'MainActor'
public let MMMCMXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11763:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11766:12: warning: let 'MMMCMXIV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .IV])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11766:12: note: add '@MainActor' to make let 'MMMCMXIV' part of global actor 'MainActor'
public let MMMCMXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .IV])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11766:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .IV])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11769:12: warning: let 'MMMCMXV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .V])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11769:12: note: add '@MainActor' to make let 'MMMCMXV' part of global actor 'MainActor'
public let MMMCMXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .V])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11769:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .V])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11772:12: warning: let 'MMMCMXVI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .V, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11772:12: note: add '@MainActor' to make let 'MMMCMXVI' part of global actor 'MainActor'
public let MMMCMXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .V, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11772:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .V, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11775:12: warning: let 'MMMCMXVII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .V, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11775:12: note: add '@MainActor' to make let 'MMMCMXVII' part of global actor 'MainActor'
public let MMMCMXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .V, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11775:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .V, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11778:12: warning: let 'MMMCMXVIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .V, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11778:12: note: add '@MainActor' to make let 'MMMCMXVIII' part of global actor 'MainActor'
public let MMMCMXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .V, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11778:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .V, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11781:12: warning: let 'MMMCMXIX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .IX])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11781:12: note: add '@MainActor' to make let 'MMMCMXIX' part of global actor 'MainActor'
public let MMMCMXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .IX])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11781:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .IX])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11784:12: warning: let 'MMMCMXX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11784:12: note: add '@MainActor' to make let 'MMMCMXX' part of global actor 'MainActor'
public let MMMCMXX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11784:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11787:12: warning: let 'MMMCMXXI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11787:12: note: add '@MainActor' to make let 'MMMCMXXI' part of global actor 'MainActor'
public let MMMCMXXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11787:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11790:12: warning: let 'MMMCMXXII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11790:12: note: add '@MainActor' to make let 'MMMCMXXII' part of global actor 'MainActor'
public let MMMCMXXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11790:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11793:12: warning: let 'MMMCMXXIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11793:12: note: add '@MainActor' to make let 'MMMCMXXIII' part of global actor 'MainActor'
public let MMMCMXXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11793:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11796:12: warning: let 'MMMCMXXIV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .IV])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11796:12: note: add '@MainActor' to make let 'MMMCMXXIV' part of global actor 'MainActor'
public let MMMCMXXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .IV])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11796:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .IV])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11799:12: warning: let 'MMMCMXXV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .V])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11799:12: note: add '@MainActor' to make let 'MMMCMXXV' part of global actor 'MainActor'
public let MMMCMXXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .V])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11799:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .V])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11802:12: warning: let 'MMMCMXXVI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .V, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11802:12: note: add '@MainActor' to make let 'MMMCMXXVI' part of global actor 'MainActor'
public let MMMCMXXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .V, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11802:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .V, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11805:12: warning: let 'MMMCMXXVII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .V, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11805:12: note: add '@MainActor' to make let 'MMMCMXXVII' part of global actor 'MainActor'
public let MMMCMXXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .V, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11805:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .V, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11808:12: warning: let 'MMMCMXXVIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .V, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11808:12: note: add '@MainActor' to make let 'MMMCMXXVIII' part of global actor 'MainActor'
public let MMMCMXXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .V, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11808:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .V, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11811:12: warning: let 'MMMCMXXIX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .IX])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11811:12: note: add '@MainActor' to make let 'MMMCMXXIX' part of global actor 'MainActor'
public let MMMCMXXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .IX])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11811:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .IX])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11814:12: warning: let 'MMMCMXXX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11814:12: note: add '@MainActor' to make let 'MMMCMXXX' part of global actor 'MainActor'
public let MMMCMXXX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11814:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11817:12: warning: let 'MMMCMXXXI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11817:12: note: add '@MainActor' to make let 'MMMCMXXXI' part of global actor 'MainActor'
public let MMMCMXXXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11817:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11820:12: warning: let 'MMMCMXXXII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11820:12: note: add '@MainActor' to make let 'MMMCMXXXII' part of global actor 'MainActor'
public let MMMCMXXXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11820:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11823:12: warning: let 'MMMCMXXXIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11823:12: note: add '@MainActor' to make let 'MMMCMXXXIII' part of global actor 'MainActor'
public let MMMCMXXXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11823:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11826:12: warning: let 'MMMCMXXXIV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .IV])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11826:12: note: add '@MainActor' to make let 'MMMCMXXXIV' part of global actor 'MainActor'
public let MMMCMXXXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .IV])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11826:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .IV])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11829:12: warning: let 'MMMCMXXXV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .V])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11829:12: note: add '@MainActor' to make let 'MMMCMXXXV' part of global actor 'MainActor'
public let MMMCMXXXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .V])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11829:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .V])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11832:12: warning: let 'MMMCMXXXVI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .V, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11832:12: note: add '@MainActor' to make let 'MMMCMXXXVI' part of global actor 'MainActor'
public let MMMCMXXXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .V, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11832:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .V, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11835:12: warning: let 'MMMCMXXXVII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .V, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11835:12: note: add '@MainActor' to make let 'MMMCMXXXVII' part of global actor 'MainActor'
public let MMMCMXXXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .V, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11835:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .V, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11838:12: warning: let 'MMMCMXXXVIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .V, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11838:12: note: add '@MainActor' to make let 'MMMCMXXXVIII' part of global actor 'MainActor'
public let MMMCMXXXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .V, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11838:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .V, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11841:12: warning: let 'MMMCMXXXIX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXXXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .IX])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11841:12: note: add '@MainActor' to make let 'MMMCMXXXIX' part of global actor 'MainActor'
public let MMMCMXXXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .IX])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11841:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXXXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .X, .X, .X, .IX])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11844:12: warning: let 'MMMCMXL' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXL = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11844:12: note: add '@MainActor' to make let 'MMMCMXL' part of global actor 'MainActor'
public let MMMCMXL = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11844:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXL = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11847:12: warning: let 'MMMCMXLI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXLI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11847:12: note: add '@MainActor' to make let 'MMMCMXLI' part of global actor 'MainActor'
public let MMMCMXLI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11847:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXLI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11850:12: warning: let 'MMMCMXLII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXLII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11850:12: note: add '@MainActor' to make let 'MMMCMXLII' part of global actor 'MainActor'
public let MMMCMXLII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11850:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXLII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11853:12: warning: let 'MMMCMXLIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXLIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11853:12: note: add '@MainActor' to make let 'MMMCMXLIII' part of global actor 'MainActor'
public let MMMCMXLIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11853:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXLIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11856:12: warning: let 'MMMCMXLIV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXLIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .IV])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11856:12: note: add '@MainActor' to make let 'MMMCMXLIV' part of global actor 'MainActor'
public let MMMCMXLIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .IV])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11856:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXLIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .IV])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11859:12: warning: let 'MMMCMXLV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXLV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .V])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11859:12: note: add '@MainActor' to make let 'MMMCMXLV' part of global actor 'MainActor'
public let MMMCMXLV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .V])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11859:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXLV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .V])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11862:12: warning: let 'MMMCMXLVI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXLVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .V, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11862:12: note: add '@MainActor' to make let 'MMMCMXLVI' part of global actor 'MainActor'
public let MMMCMXLVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .V, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11862:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXLVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .V, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11865:12: warning: let 'MMMCMXLVII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXLVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .V, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11865:12: note: add '@MainActor' to make let 'MMMCMXLVII' part of global actor 'MainActor'
public let MMMCMXLVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .V, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11865:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXLVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .V, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11868:12: warning: let 'MMMCMXLVIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXLVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .V, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11868:12: note: add '@MainActor' to make let 'MMMCMXLVIII' part of global actor 'MainActor'
public let MMMCMXLVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .V, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11868:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXLVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .V, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11871:12: warning: let 'MMMCMXLIX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXLIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .IX])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11871:12: note: add '@MainActor' to make let 'MMMCMXLIX' part of global actor 'MainActor'
public let MMMCMXLIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .IX])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11871:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXLIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XL, .IX])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11874:12: warning: let 'MMMCML' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCML = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11874:12: note: add '@MainActor' to make let 'MMMCML' part of global actor 'MainActor'
public let MMMCML = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11874:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCML = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11877:12: warning: let 'MMMCMLI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11877:12: note: add '@MainActor' to make let 'MMMCMLI' part of global actor 'MainActor'
public let MMMCMLI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11877:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11880:12: warning: let 'MMMCMLII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11880:12: note: add '@MainActor' to make let 'MMMCMLII' part of global actor 'MainActor'
public let MMMCMLII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11880:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11883:12: warning: let 'MMMCMLIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11883:12: note: add '@MainActor' to make let 'MMMCMLIII' part of global actor 'MainActor'
public let MMMCMLIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11883:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11886:12: warning: let 'MMMCMLIV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .IV])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11886:12: note: add '@MainActor' to make let 'MMMCMLIV' part of global actor 'MainActor'
public let MMMCMLIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .IV])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11886:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .IV])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11889:12: warning: let 'MMMCMLV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .V])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11889:12: note: add '@MainActor' to make let 'MMMCMLV' part of global actor 'MainActor'
public let MMMCMLV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .V])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11889:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .V])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11892:12: warning: let 'MMMCMLVI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .V, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11892:12: note: add '@MainActor' to make let 'MMMCMLVI' part of global actor 'MainActor'
public let MMMCMLVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .V, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11892:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .V, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11895:12: warning: let 'MMMCMLVII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .V, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11895:12: note: add '@MainActor' to make let 'MMMCMLVII' part of global actor 'MainActor'
public let MMMCMLVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .V, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11895:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .V, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11898:12: warning: let 'MMMCMLVIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .V, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11898:12: note: add '@MainActor' to make let 'MMMCMLVIII' part of global actor 'MainActor'
public let MMMCMLVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .V, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11898:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .V, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11901:12: warning: let 'MMMCMLIX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .IX])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11901:12: note: add '@MainActor' to make let 'MMMCMLIX' part of global actor 'MainActor'
public let MMMCMLIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .IX])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11901:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .IX])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11904:12: warning: let 'MMMCMLX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11904:12: note: add '@MainActor' to make let 'MMMCMLX' part of global actor 'MainActor'
public let MMMCMLX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11904:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11907:12: warning: let 'MMMCMLXI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11907:12: note: add '@MainActor' to make let 'MMMCMLXI' part of global actor 'MainActor'
public let MMMCMLXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11907:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11910:12: warning: let 'MMMCMLXII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11910:12: note: add '@MainActor' to make let 'MMMCMLXII' part of global actor 'MainActor'
public let MMMCMLXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11910:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11913:12: warning: let 'MMMCMLXIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11913:12: note: add '@MainActor' to make let 'MMMCMLXIII' part of global actor 'MainActor'
public let MMMCMLXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11913:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11916:12: warning: let 'MMMCMLXIV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .IV])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11916:12: note: add '@MainActor' to make let 'MMMCMLXIV' part of global actor 'MainActor'
public let MMMCMLXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .IV])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11916:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .IV])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11919:12: warning: let 'MMMCMLXV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .V])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11919:12: note: add '@MainActor' to make let 'MMMCMLXV' part of global actor 'MainActor'
public let MMMCMLXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .V])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11919:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .V])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11922:12: warning: let 'MMMCMLXVI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .V, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11922:12: note: add '@MainActor' to make let 'MMMCMLXVI' part of global actor 'MainActor'
public let MMMCMLXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .V, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11922:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .V, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11925:12: warning: let 'MMMCMLXVII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .V, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11925:12: note: add '@MainActor' to make let 'MMMCMLXVII' part of global actor 'MainActor'
public let MMMCMLXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .V, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11925:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .V, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11928:12: warning: let 'MMMCMLXVIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .V, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11928:12: note: add '@MainActor' to make let 'MMMCMLXVIII' part of global actor 'MainActor'
public let MMMCMLXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .V, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11928:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .V, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11931:12: warning: let 'MMMCMLXIX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .IX])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11931:12: note: add '@MainActor' to make let 'MMMCMLXIX' part of global actor 'MainActor'
public let MMMCMLXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .IX])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11931:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .IX])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11934:12: warning: let 'MMMCMLXX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11934:12: note: add '@MainActor' to make let 'MMMCMLXX' part of global actor 'MainActor'
public let MMMCMLXX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11934:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11937:12: warning: let 'MMMCMLXXI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11937:12: note: add '@MainActor' to make let 'MMMCMLXXI' part of global actor 'MainActor'
public let MMMCMLXXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11937:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11940:12: warning: let 'MMMCMLXXII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11940:12: note: add '@MainActor' to make let 'MMMCMLXXII' part of global actor 'MainActor'
public let MMMCMLXXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11940:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11943:12: warning: let 'MMMCMLXXIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11943:12: note: add '@MainActor' to make let 'MMMCMLXXIII' part of global actor 'MainActor'
public let MMMCMLXXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11943:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11946:12: warning: let 'MMMCMLXXIV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .IV])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11946:12: note: add '@MainActor' to make let 'MMMCMLXXIV' part of global actor 'MainActor'
public let MMMCMLXXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .IV])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11946:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .IV])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11949:12: warning: let 'MMMCMLXXV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .V])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11949:12: note: add '@MainActor' to make let 'MMMCMLXXV' part of global actor 'MainActor'
public let MMMCMLXXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .V])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11949:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .V])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11952:12: warning: let 'MMMCMLXXVI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .V, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11952:12: note: add '@MainActor' to make let 'MMMCMLXXVI' part of global actor 'MainActor'
public let MMMCMLXXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .V, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11952:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .V, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11955:12: warning: let 'MMMCMLXXVII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .V, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11955:12: note: add '@MainActor' to make let 'MMMCMLXXVII' part of global actor 'MainActor'
public let MMMCMLXXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .V, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11955:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .V, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11958:12: warning: let 'MMMCMLXXVIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .V, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11958:12: note: add '@MainActor' to make let 'MMMCMLXXVIII' part of global actor 'MainActor'
public let MMMCMLXXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .V, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11958:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .V, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11961:12: warning: let 'MMMCMLXXIX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .IX])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11961:12: note: add '@MainActor' to make let 'MMMCMLXXIX' part of global actor 'MainActor'
public let MMMCMLXXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .IX])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11961:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .IX])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11964:12: warning: let 'MMMCMLXXX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11964:12: note: add '@MainActor' to make let 'MMMCMLXXX' part of global actor 'MainActor'
public let MMMCMLXXX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11964:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11967:12: warning: let 'MMMCMLXXXI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11967:12: note: add '@MainActor' to make let 'MMMCMLXXXI' part of global actor 'MainActor'
public let MMMCMLXXXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11967:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXXI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11970:12: warning: let 'MMMCMLXXXII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11970:12: note: add '@MainActor' to make let 'MMMCMLXXXII' part of global actor 'MainActor'
public let MMMCMLXXXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11970:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXXII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11973:12: warning: let 'MMMCMLXXXIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11973:12: note: add '@MainActor' to make let 'MMMCMLXXXIII' part of global actor 'MainActor'
public let MMMCMLXXXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11973:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXXIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11976:12: warning: let 'MMMCMLXXXIV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .IV])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11976:12: note: add '@MainActor' to make let 'MMMCMLXXXIV' part of global actor 'MainActor'
public let MMMCMLXXXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .IV])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11976:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXXIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .IV])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11979:12: warning: let 'MMMCMLXXXV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .V])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11979:12: note: add '@MainActor' to make let 'MMMCMLXXXV' part of global actor 'MainActor'
public let MMMCMLXXXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .V])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11979:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXXV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .V])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11982:12: warning: let 'MMMCMLXXXVI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .V, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11982:12: note: add '@MainActor' to make let 'MMMCMLXXXVI' part of global actor 'MainActor'
public let MMMCMLXXXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .V, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11982:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXXVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .V, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11985:12: warning: let 'MMMCMLXXXVII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .V, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11985:12: note: add '@MainActor' to make let 'MMMCMLXXXVII' part of global actor 'MainActor'
public let MMMCMLXXXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .V, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11985:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXXVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .V, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11988:12: warning: let 'MMMCMLXXXVIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .V, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11988:12: note: add '@MainActor' to make let 'MMMCMLXXXVIII' part of global actor 'MainActor'
public let MMMCMLXXXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .V, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11988:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXXVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .V, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11991:12: warning: let 'MMMCMLXXXIX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMLXXXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .IX])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11991:12: note: add '@MainActor' to make let 'MMMCMLXXXIX' part of global actor 'MainActor'
public let MMMCMLXXXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .IX])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11991:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMLXXXIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .L, .X, .X, .X, .IX])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11994:12: warning: let 'MMMCMXC' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXC = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11994:12: note: add '@MainActor' to make let 'MMMCMXC' part of global actor 'MainActor'
public let MMMCMXC = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11994:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXC = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11997:12: warning: let 'MMMCMXCI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXCI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11997:12: note: add '@MainActor' to make let 'MMMCMXCI' part of global actor 'MainActor'
public let MMMCMXCI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:11997:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXCI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12000:12: warning: let 'MMMCMXCII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXCII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12000:12: note: add '@MainActor' to make let 'MMMCMXCII' part of global actor 'MainActor'
public let MMMCMXCII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12000:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXCII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12003:12: warning: let 'MMMCMXCIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXCIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12003:12: note: add '@MainActor' to make let 'MMMCMXCIII' part of global actor 'MainActor'
public let MMMCMXCIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12003:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXCIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12006:12: warning: let 'MMMCMXCIV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXCIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .IV])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12006:12: note: add '@MainActor' to make let 'MMMCMXCIV' part of global actor 'MainActor'
public let MMMCMXCIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .IV])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12006:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXCIV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .IV])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12009:12: warning: let 'MMMCMXCV' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXCV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .V])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12009:12: note: add '@MainActor' to make let 'MMMCMXCV' part of global actor 'MainActor'
public let MMMCMXCV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .V])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12009:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXCV = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .V])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12012:12: warning: let 'MMMCMXCVI' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXCVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .V, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12012:12: note: add '@MainActor' to make let 'MMMCMXCVI' part of global actor 'MainActor'
public let MMMCMXCVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .V, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12012:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXCVI = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .V, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12015:12: warning: let 'MMMCMXCVII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXCVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .V, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12015:12: note: add '@MainActor' to make let 'MMMCMXCVII' part of global actor 'MainActor'
public let MMMCMXCVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .V, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12015:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXCVII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .V, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12018:12: warning: let 'MMMCMXCVIII' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXCVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .V, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12018:12: note: add '@MainActor' to make let 'MMMCMXCVIII' part of global actor 'MainActor'
public let MMMCMXCVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .V, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12018:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXCVIII = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .V, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12021:12: warning: let 'MMMCMXCIX' is not concurrency-safe because non-'Sendable' type 'RomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public let MMMCMXCIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .IX])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/RomanNumeral.swift:64:15: note: consider making struct 'RomanNumeral' conform to the 'Sendable' protocol
public struct RomanNumeral: SubtractiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12021:12: note: add '@MainActor' to make let 'MMMCMXCIX' part of global actor 'MainActor'
public let MMMCMXCIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .IX])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumerals.swift:12021:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public let MMMCMXCIX = RomanNumeral(unsafeSymbols: [.M, .M, .M, .CM, .XC, .IX])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Additive Notation/AdditiveRomanNumeral.swift:46:23: warning: static property 'maximum' is not concurrency-safe because non-'Sendable' type 'AdditiveRomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public static let maximum = AdditiveRomanNumeral(unsafeSymbols: [.M, .M, .M, .D, .C, .C, .C, .C, .L, .X, .X, .X, .X, .V, .I, .I, .I, .I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Additive Notation/AdditiveRomanNumeral.swift:43:15: note: consider making struct 'AdditiveRomanNumeral' conform to the 'Sendable' protocol
public struct AdditiveRomanNumeral: AdditiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Additive Notation/AdditiveRomanNumeral.swift:46:23: note: add '@MainActor' to make static property 'maximum' part of global actor 'MainActor'
public static let maximum = AdditiveRomanNumeral(unsafeSymbols: [.M, .M, .M, .D, .C, .C, .C, .C, .L, .X, .X, .X, .X, .V, .I, .I, .I, .I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Additive Notation/AdditiveRomanNumeral.swift:46:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let maximum = AdditiveRomanNumeral(unsafeSymbols: [.M, .M, .M, .D, .C, .C, .C, .C, .L, .X, .X, .X, .X, .V, .I, .I, .I, .I])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Additive Notation/AdditiveRomanNumeral.swift:47:23: warning: static property 'minimum' is not concurrency-safe because non-'Sendable' type 'AdditiveRomanNumeral' may have shared mutable state; this is an error in the Swift 6 language mode
public static let minimum = AdditiveRomanNumeral(unsafeSymbols: [.I])
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Additive Notation/AdditiveRomanNumeral.swift:43:15: note: consider making struct 'AdditiveRomanNumeral' conform to the 'Sendable' protocol
public struct AdditiveRomanNumeral: AdditiveRomanNumeralSymbolsConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Additive Notation/AdditiveRomanNumeral.swift:47:23: note: add '@MainActor' to make static property 'minimum' part of global actor 'MainActor'
public static let minimum = AdditiveRomanNumeral(unsafeSymbols: [.I])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Additive Notation/AdditiveRomanNumeral.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let minimum = AdditiveRomanNumeral(unsafeSymbols: [.I])
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ SubtractiveRomanNumeralSymbolConvertible.swift,\ RomanNumeralArithmeticError.swift,\ String+RomanNumeral.swift /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric\ System/Subtractive\ Notation/SubtractiveRomanNumeralSymbolConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric\ System/RomanNumeralArithmeticError.swift /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Extensions/Foundation/String+RomanNumeral.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745672814359160-swift-frontend-RomanNumeralKit-SubtractiveRomanNumeralSymbolConvertible.swift-arm64_apple_tvos10.0-o-Onone-2518665740.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.3239 seconds (3.7648 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0256 ( 11.7%) 0.0206 ( 19.5%) 0.0462 ( 14.3%) 1.7318 ( 46.0%) parse-and-resolve-imports
0.0244 ( 11.2%) 0.0199 ( 18.8%) 0.0442 ( 13.7%) 1.7298 ( 45.9%) Import resolution
0.0839 ( 38.4%) 0.0291 ( 27.5%) 0.1129 ( 34.9%) 0.1131 ( 3.0%) build-rewrite-system
0.0016 ( 0.7%) 0.0061 ( 5.8%) 0.0077 ( 2.4%) 0.0767 ( 2.0%) load-stdlib
0.0194 ( 8.9%) 0.0054 ( 5.1%) 0.0248 ( 7.6%) 0.0248 ( 0.7%) perform-sema
0.0190 ( 8.7%) 0.0053 ( 5.0%) 0.0243 ( 7.5%) 0.0243 ( 0.6%) Type checking and Semantic analysis
0.0094 ( 4.3%) 0.0074 ( 7.0%) 0.0168 ( 5.2%) 0.0168 ( 0.4%) import-clang-decl
0.0116 ( 5.3%) 0.0037 ( 3.5%) 0.0153 ( 4.7%) 0.0153 ( 0.4%) typecheck-decl
0.0053 ( 2.4%) 0.0044 ( 4.2%) 0.0097 ( 3.0%) 0.0102 ( 0.3%) IRGen
0.0074 ( 3.4%) 0.0015 ( 1.5%) 0.0089 ( 2.8%) 0.0089 ( 0.2%) typecheck-stmt
0.0042 ( 1.9%) 0.0014 ( 1.3%) 0.0056 ( 1.7%) 0.0056 ( 0.1%) SILGen
0.0032 ( 1.5%) 0.0001 ( 0.1%) 0.0033 ( 1.0%) 0.0033 ( 0.1%) SIL optimization
0.0018 ( 0.8%) 0.0003 ( 0.3%) 0.0021 ( 0.6%) 0.0021 ( 0.1%) SILGen-function
0.0005 ( 0.2%) 0.0003 ( 0.3%) 0.0008 ( 0.2%) 0.0008 ( 0.0%) load-all-members
0.0006 ( 0.3%) 0.0001 ( 0.1%) 0.0007 ( 0.2%) 0.0007 ( 0.0%) module-populate-cache
0.0004 ( 0.2%) 0.0001 ( 0.1%) 0.0004 ( 0.1%) 0.0004 ( 0.0%) typecheck-expr
0.0001 ( 0.1%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) precheck-target
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.2184 (100.0%) 0.1055 (100.0%) 0.3239 (100.0%) 3.7648 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.2932 seconds (3.1691 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.8226 (100.0%) 0.4706 (100.0%) 1.2932 (100.0%) 3.1691 (100.0%) Building Target
0.8226 (100.0%) 0.4706 (100.0%) 1.2932 (100.0%) 3.1691 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric\ System/Subtractive\ Notation/SubtractiveRomanNumeralSymbolConvertible.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric\ System/RomanNumeralArithmeticError.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Extensions/Foundation/String+RomanNumeral.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ RomanNumeralSymbolConvertible.swift,\ RomanNumeralError.swift,\ AdditiveRomanNumeralSymbolConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric\ System/RomanNumeralSymbolConvertible.swift /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric\ System/RomanNumeralError.swift /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric\ System/Additive\ Notation/AdditiveRomanNumeralSymbolConvertible.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745672814358751-swift-frontend-RomanNumeralKit-RomanNumeralSymbolConvertible.swift-arm64_apple_tvos10.0-o-Onone-3566993598.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.3014 seconds (3.7543 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0265 ( 13.5%) 0.0223 ( 21.2%) 0.0487 ( 16.2%) 1.7154 ( 45.7%) parse-and-resolve-imports
0.0252 ( 12.9%) 0.0212 ( 20.2%) 0.0465 ( 15.4%) 1.7132 ( 45.6%) Import resolution
0.0016 ( 0.8%) 0.0065 ( 6.2%) 0.0081 ( 2.7%) 0.1274 ( 3.4%) load-stdlib
0.0810 ( 41.3%) 0.0270 ( 25.7%) 0.1080 ( 35.8%) 0.1082 ( 2.9%) build-rewrite-system
0.0133 ( 6.7%) 0.0055 ( 5.2%) 0.0188 ( 6.2%) 0.0188 ( 0.5%) perform-sema
0.0129 ( 6.5%) 0.0054 ( 5.1%) 0.0183 ( 6.1%) 0.0183 ( 0.5%) Type checking and Semantic analysis
0.0119 ( 6.0%) 0.0048 ( 4.6%) 0.0167 ( 5.5%) 0.0167 ( 0.4%) typecheck-decl
0.0093 ( 4.7%) 0.0071 ( 6.8%) 0.0164 ( 5.4%) 0.0164 ( 0.4%) import-clang-decl
0.0045 ( 2.3%) 0.0030 ( 2.9%) 0.0075 ( 2.5%) 0.0075 ( 0.2%) IRGen
0.0034 ( 1.8%) 0.0008 ( 0.8%) 0.0043 ( 1.4%) 0.0043 ( 0.1%) SILGen
0.0027 ( 1.4%) 0.0001 ( 0.1%) 0.0027 ( 0.9%) 0.0027 ( 0.1%) SIL optimization
0.0015 ( 0.7%) 0.0002 ( 0.2%) 0.0017 ( 0.6%) 0.0017 ( 0.0%) SILGen-function
0.0012 ( 0.6%) 0.0005 ( 0.5%) 0.0017 ( 0.6%) 0.0017 ( 0.0%) typecheck-stmt
0.0006 ( 0.3%) 0.0003 ( 0.3%) 0.0009 ( 0.3%) 0.0009 ( 0.0%) load-all-members
0.0004 ( 0.2%) 0.0001 ( 0.1%) 0.0005 ( 0.2%) 0.0005 ( 0.0%) module-populate-cache
0.0003 ( 0.2%) 0.0001 ( 0.1%) 0.0004 ( 0.1%) 0.0004 ( 0.0%) typecheck-expr
0.0001 ( 0.1%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) precheck-target
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.1964 (100.0%) 0.1049 (100.0%) 0.3014 (100.0%) 3.7543 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.2730 seconds (3.1682 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.8107 (100.0%) 0.4623 (100.0%) 1.2730 (100.0%) 3.1682 (100.0%) Building Target
0.8107 (100.0%) 0.4623 (100.0%) 1.2730 (100.0%) 3.1682 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric\ System/RomanNumeralSymbolConvertible.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric\ System/RomanNumeralError.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric\ System/Additive\ Notation/AdditiveRomanNumeralSymbolConvertible.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ AdditiveRomanNumeralSymbolCondenser.swift,\ SubtractiveRomanNumeralSymbol.swift /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric\ System/Additive\ Notation/AdditiveRomanNumeralSymbolCondenser.swift /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric\ System/Subtractive\ Notation/SubtractiveRomanNumeralSymbol.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745672817242328-swift-frontend-RomanNumeralKit-AdditiveRomanNumeralSymbolCondenser.swift-arm64_apple_tvos10.0-o-Onone-514639831.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.3970 seconds (0.3970 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0577 ( 19.0%) 0.0138 ( 14.8%) 0.0716 ( 18.0%) 0.0716 ( 18.0%) perform-sema
0.0573 ( 18.9%) 0.0137 ( 14.6%) 0.0710 ( 17.9%) 0.0710 ( 17.9%) Type checking and Semantic analysis
0.0440 ( 14.5%) 0.0114 ( 12.2%) 0.0554 ( 14.0%) 0.0554 ( 14.0%) typecheck-stmt
0.0256 ( 8.4%) 0.0178 ( 19.0%) 0.0434 ( 10.9%) 0.0434 ( 10.9%) parse-and-resolve-imports
0.0245 ( 8.1%) 0.0171 ( 18.3%) 0.0417 ( 10.5%) 0.0417 ( 10.5%) Import resolution
0.0196 ( 6.5%) 0.0033 ( 3.6%) 0.0230 ( 5.8%) 0.0230 ( 5.8%) typecheck-expr
0.0168 ( 5.5%) 0.0032 ( 3.5%) 0.0200 ( 5.0%) 0.0200 ( 5.0%) typecheck-decl
0.0131 ( 4.3%) 0.0022 ( 2.3%) 0.0153 ( 3.8%) 0.0153 ( 3.8%) precheck-target
0.0101 ( 3.3%) 0.0018 ( 1.9%) 0.0119 ( 3.0%) 0.0119 ( 3.0%) build-rewrite-system
0.0092 ( 3.0%) 0.0017 ( 1.9%) 0.0110 ( 2.8%) 0.0110 ( 2.8%) SILGen
0.0076 ( 2.5%) 0.0030 ( 3.2%) 0.0105 ( 2.7%) 0.0105 ( 2.7%) IRGen
0.0059 ( 1.9%) 0.0011 ( 1.2%) 0.0070 ( 1.8%) 0.0069 ( 1.8%) SILGen-function
0.0067 ( 2.2%) 0.0001 ( 0.1%) 0.0068 ( 1.7%) 0.0069 ( 1.7%) SIL optimization
0.0026 ( 0.9%) 0.0006 ( 0.6%) 0.0032 ( 0.8%) 0.0032 ( 0.8%) typecheck-expr-pattern
0.0010 ( 0.3%) 0.0014 ( 1.5%) 0.0024 ( 0.6%) 0.0024 ( 0.6%) import-clang-decl
0.0010 ( 0.3%) 0.0013 ( 1.4%) 0.0023 ( 0.6%) 0.0023 ( 0.6%) load-stdlib
0.0004 ( 0.1%) 0.0001 ( 0.1%) 0.0005 ( 0.1%) 0.0005 ( 0.1%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.3032 (100.0%) 0.0938 (100.0%) 0.3970 (100.0%) 0.3970 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.2081 seconds (0.2096 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.1605 (100.0%) 0.0476 (100.0%) 0.2081 (100.0%) 0.2096 (100.0%) Building Target
0.1605 (100.0%) 0.0476 (100.0%) 0.2081 (100.0%) 0.2096 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric\ System/Additive\ Notation/AdditiveRomanNumeralSymbolCondenser.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric\ System/Subtractive\ Notation/SubtractiveRomanNumeralSymbol.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:72:23: warning: static property 'allAdditiveRomanNumeralSymbolsAscending' is not concurrency-safe because non-'Sendable' type '[[RomanNumeralSymbol]]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allAdditiveRomanNumeralSymbolsAscending = allSymbolsAscending
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumeralSymbol.swift:37:13: note: consider making enum 'RomanNumeralSymbol' conform to the 'Sendable' protocol
public enum RomanNumeralSymbol: CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:72:23: note: add '@MainActor' to make static property 'allAdditiveRomanNumeralSymbolsAscending' part of global actor 'MainActor'
public static let allAdditiveRomanNumeralSymbolsAscending = allSymbolsAscending
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:72:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allAdditiveRomanNumeralSymbolsAscending = allSymbolsAscending
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:76:23: warning: static property 'allAdditiveRomanNumeralSymbolsDescending' is not concurrency-safe because non-'Sendable' type '[[RomanNumeralSymbol]]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allAdditiveRomanNumeralSymbolsDescending = allSymbolsDescending
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumeralSymbol.swift:37:13: note: consider making enum 'RomanNumeralSymbol' conform to the 'Sendable' protocol
public enum RomanNumeralSymbol: CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:76:23: note: add '@MainActor' to make static property 'allAdditiveRomanNumeralSymbolsDescending' part of global actor 'MainActor'
public static let allAdditiveRomanNumeralSymbolsDescending = allSymbolsDescending
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allAdditiveRomanNumeralSymbolsDescending = allSymbolsDescending
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:80:23: warning: static property 'allRomanNumeralSymbolsAscending' is not concurrency-safe because non-'Sendable' type '[[RomanNumeralSymbol]]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allRomanNumeralSymbolsAscending = allSymbolsAscending.map { $0.romanNumeralSymbols }
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/RomanNumeralSymbol.swift:37:13: note: consider making enum 'RomanNumeralSymbol' conform to the 'Sendable' protocol
public enum RomanNumeralSymbol: CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:80:23: note: add '@MainActor' to make static property 'allRomanNumeralSymbolsAscending' part of global actor 'MainActor'
public static let allRomanNumeralSymbolsAscending = allSymbolsAscending.map { $0.romanNumeralSymbols }
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:80:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allRomanNumeralSymbolsAscending = allSymbolsAscending.map { $0.romanNumeralSymbols }
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:247:23: warning: static property 'allSymbolsAscending' is not concurrency-safe because non-'Sendable' type '[SubtractiveRomanNumeralSymbol]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allSymbolsAscending: [SubtractiveRomanNumeralSymbol] = [.I, .IV, .V, .IX, .X, .XL, .L, .XC, .C, .CD, .D, .CM, .M]
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:26:13: note: consider making enum 'SubtractiveRomanNumeralSymbol' conform to the 'Sendable' protocol
public enum SubtractiveRomanNumeralSymbol: CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:247:23: note: add '@MainActor' to make static property 'allSymbolsAscending' part of global actor 'MainActor'
public static let allSymbolsAscending: [SubtractiveRomanNumeralSymbol] = [.I, .IV, .V, .IX, .X, .XL, .L, .XC, .C, .CD, .D, .CM, .M]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:247:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allSymbolsAscending: [SubtractiveRomanNumeralSymbol] = [.I, .IV, .V, .IX, .X, .XL, .L, .XC, .C, .CD, .D, .CM, .M]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:248:23: warning: static property 'allSymbolsDescending' is not concurrency-safe because non-'Sendable' type '[SubtractiveRomanNumeralSymbol]' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allSymbolsDescending: [SubtractiveRomanNumeralSymbol] = allSymbolsAscending.reversed()
^
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:26:13: note: consider making enum 'SubtractiveRomanNumeralSymbol' conform to the 'Sendable' protocol
public enum SubtractiveRomanNumeralSymbol: CaseIterable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:248:23: note: add '@MainActor' to make static property 'allSymbolsDescending' part of global actor 'MainActor'
public static let allSymbolsDescending: [SubtractiveRomanNumeralSymbol] = allSymbolsAscending.reversed()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RomanNumeralKit/Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift:248:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allSymbolsDescending: [SubtractiveRomanNumeralSymbol] = allSymbolsAscending.reversed()
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling RomanNumeralSymbolsConvertible.swift, AdditiveRomanNumeralConvertible.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
SwiftDriverJobDiscovery normal arm64 Compiling AdditiveRomanNumeral.swift, RomanNumeralProtocol.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
SwiftDriverJobDiscovery normal arm64 Compiling RomanNumeralSymbolProtocol.swift, SubtractiveRomanNumeralSymbolsConvertible.swift, Sequence+Sorting.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
SwiftDriverJobDiscovery normal arm64 Compiling Int+RomanNumeral.swift, RomanNumeral.swift, AdditiveRomanNumeralSymbolsConvertible.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
SwiftDriverJobDiscovery normal arm64 Compiling AdditiveRomanNumeralSymbolCondenser.swift, SubtractiveRomanNumeralSymbol.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
SwiftDriverJobDiscovery normal arm64 Compiling RomanNumeralSymbol.swift, RomanNumeralSymbolError.swift, RomanNumeralTallyMarkGroup.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
SwiftDriverJobDiscovery normal arm64 Compiling SubtractiveRomanNumeralSymbolConvertible.swift, RomanNumeralArithmeticError.swift, String+RomanNumeral.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
SwiftDriverJobDiscovery normal arm64 Compiling RomanNumeralSymbolConvertible.swift, RomanNumeralError.swift, AdditiveRomanNumeralSymbolConvertible.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
SwiftDriverJobDiscovery normal arm64 Compiling DateComponents+RomanNumeral.swift, RomanNumeralConvertible.swift, Calendar+RomanNumeral.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
SwiftDriverJobDiscovery normal arm64 Emitting module for RomanNumeralKit (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
SwiftDriver\ Compilation\ Requirements RomanNumeralKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name RomanNumeralKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.SwiftFileList -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos10.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_const_extract_protocols.json -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/RomanNumeralKit-generated-files.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/RomanNumeralKit-own-target-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/RomanNumeralKit-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit-e5206b779544a562c6f89adcb314dc93-VFS-appletvos/all-product-headers.yaml -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/RomanNumeralKit-project-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/unextended-module-overlay.yaml -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework/Headers/RomanNumeralKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit-Swift.h (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework/Headers/RomanNumeralKit-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework/Modules/RomanNumeralKit.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.swiftdoc (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework/Modules/RomanNumeralKit.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework/Modules/RomanNumeralKit.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.swiftmodule (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework/Modules/RomanNumeralKit.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework/Modules/RomanNumeralKit.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.abi.json (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework/Modules/RomanNumeralKit.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework/Modules/RomanNumeralKit.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.swiftsourceinfo (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework/Modules/RomanNumeralKit.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_vers.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/DerivedSources/RomanNumeralKit_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp
builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_vers.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_vers.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_vers.dia -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/DerivedSources/RomanNumeralKit_vers.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_vers.o -index-unit-output-path /RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_vers.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_vers.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/DerivedSources/RomanNumeralKit_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_vers.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_vers.dia -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/DerivedSources/RomanNumeralKit_vers.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_vers.o -index-unit-output-path /RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_vers.o
SwiftDriverJobDiscovery normal arm64 Compiling RomanNumeralTallyMark.swift, RomanNumerals.swift (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
SwiftDriver\ Compilation RomanNumeralKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name RomanNumeralKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.SwiftFileList -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos10.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_const_extract_protocols.json -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/RomanNumeralKit-generated-files.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/RomanNumeralKit-own-target-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/RomanNumeralKit-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit-e5206b779544a562c6f89adcb314dc93-VFS-appletvos/all-product-headers.yaml -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/RomanNumeralKit-project-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/unextended-module-overlay.yaml -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework/RomanNumeralKit normal (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos10.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.LinkFileList -install_name @rpath/RomanNumeralKit.framework/RomanNumeralKit -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_dependency_info.dat -fprofile-instr-generate -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.swiftmodule -compatibility_version 1 -current_version 1 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework/RomanNumeralKit
ExtractAppIntentsMetadata (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name RomanNumeralKit --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 10.0 --bundle-identifier es.kylehugh.RomanNumeralKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework --target-triple arm64-apple-tvos10.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework/RomanNumeralKit --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/RomanNumeralKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/RomanNumeralKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RomanNumeralKit.build/Debug-appletvos/RomanNumeralKit.build/Objects-normal/arm64/RomanNumeralKit.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 06:07:01.563 appintentsmetadataprocessor[707:3959] Starting appintentsmetadataprocessor export
2025-04-26 06:07:01.565 appintentsmetadataprocessor[707:3959] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos/RomanNumeralKit.framework/RomanNumeralKit.tbd (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework/RomanNumeralKit -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos/RomanNumeralKit.framework/RomanNumeralKit.tbd
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/RomanNumeralKit.framework
/Users/admin/builder/spi-builder-workspace/RomanNumeralKit.xcodeproj: warning: The tvOS deployment target 'TVOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 12.0 to 18.4.99. (in target 'RomanNumeralKit' from project 'RomanNumeralKit')
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "RomanNumeralKit",
"name" : "RomanNumeralKit",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.12"
},
{
"name" : "ios",
"version" : "10.0"
},
{
"name" : "tvos",
"version" : "10.0"
},
{
"name" : "watchos",
"version" : "3.0"
}
],
"products" : [
{
"name" : "RomanNumeralKit",
"targets" : [
"RomanNumeralKit"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "RomanNumeralKitTests",
"module_type" : "SwiftTarget",
"name" : "RomanNumeralKitTests",
"path" : "Tests/RomanNumeralKitTests",
"sources" : [
"Extensions/Foundation/CalendarTests+RomanNumeral.swift",
"Extensions/Foundation/DateComponentsTests+RomanNumeral.swift",
"Extensions/Foundation/IntTests+RomanNumeral.swift",
"Extensions/Foundation/StringTests+RomanNumeral.swift",
"Numeric System/Additive Notation/AdditiveRomanNumeralTests.swift",
"Numeric System/RomanNumeralArithmeticErrorTests.swift",
"Numeric System/RomanNumeralErrorTests.swift",
"Numeric System/RomanNumeralSymbolErrorTests.swift",
"Numeric System/RomanNumeralSymbolTests.swift",
"Numeric System/RomanNumeralTallyMarkGroupTests.swift",
"Numeric System/Subtractive Notation/RomanNumeralTests.swift",
"Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbolTests.swift"
],
"target_dependencies" : [
"RomanNumeralKit"
],
"type" : "test"
},
{
"c99name" : "RomanNumeralKit",
"module_type" : "SwiftTarget",
"name" : "RomanNumeralKit",
"path" : "Sources/RomanNumeralKit",
"product_memberships" : [
"RomanNumeralKit"
],
"sources" : [
"Extensions/Foundation/Calendar+RomanNumeral.swift",
"Extensions/Foundation/DateComponents+RomanNumeral.swift",
"Extensions/Foundation/Int+RomanNumeral.swift",
"Extensions/Foundation/Sequence+Sorting.swift",
"Extensions/Foundation/String+RomanNumeral.swift",
"Numeric System/Additive Notation/AdditiveRomanNumeral.swift",
"Numeric System/Additive Notation/AdditiveRomanNumeralConvertible.swift",
"Numeric System/Additive Notation/AdditiveRomanNumeralSymbolCondenser.swift",
"Numeric System/Additive Notation/AdditiveRomanNumeralSymbolConvertible.swift",
"Numeric System/Additive Notation/AdditiveRomanNumeralSymbolsConvertible.swift",
"Numeric System/RomanNumeralArithmeticError.swift",
"Numeric System/RomanNumeralError.swift",
"Numeric System/RomanNumeralProtocol.swift",
"Numeric System/RomanNumeralSymbol.swift",
"Numeric System/RomanNumeralSymbolConvertible.swift",
"Numeric System/RomanNumeralSymbolError.swift",
"Numeric System/RomanNumeralSymbolProtocol.swift",
"Numeric System/RomanNumeralSymbolsConvertible.swift",
"Numeric System/RomanNumeralTallyMark.swift",
"Numeric System/RomanNumeralTallyMarkGroup.swift",
"Numeric System/RomanNumerals.swift",
"Numeric System/Subtractive Notation/RomanNumeral.swift",
"Numeric System/Subtractive Notation/RomanNumeralConvertible.swift",
"Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbol.swift",
"Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbolConvertible.swift",
"Numeric System/Subtractive Notation/SubtractiveRomanNumeralSymbolsConvertible.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
Done.