Build Information
Failed to build Doggie, reference main (d49683), with Swift 6.3 for Android on 21 Apr 2026 16:00:37 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build Log
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:55: error: cannot find 'PROT_READ' in scope
734 | self.path = ""
735 |
736 | let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: cannot find 'PROT_READ' in scope
737 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:67: error: cannot find 'PROT_WRITE' in scope
734 | self.path = ""
735 |
736 | let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: cannot find 'PROT_WRITE' in scope
737 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:79: error: cannot find 'MAP_ANONYMOUS' in scope
734 | self.path = ""
735 |
736 | let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: cannot find 'MAP_ANONYMOUS' in scope
737 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:95: error: cannot find 'MAP_PRIVATE' in scope
734 | self.path = ""
735 |
736 | let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: cannot find 'MAP_PRIVATE' in scope
737 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:37: error: 'nil' requires a contextual type
734 | self.path = ""
735 |
736 | let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: 'nil' requires a contextual type
737 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:737:35: error: cannot find 'MAP_FAILED' in scope
735 |
736 | let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
737 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
| `- error: cannot find 'MAP_FAILED' in scope
738 |
739 | self.address = _address!.bindMemory(to: Element.self, capacity: capacity)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:737:89: error: cannot find 'errno' in scope
735 |
736 | let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
737 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
| `- error: cannot find 'errno' in scope
738 |
739 | self.address = _address!.bindMemory(to: Element.self, capacity: capacity)
/root/.swiftpm/swift-sdks/swift-6.3-RELEASE_android.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 | * thread.
57 | */
58 | #define errno (*__errno())
| `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:749:13: error: cannot find 'munmap' in scope
747 | }
748 |
749 | munmap(address, mapped_size)
| `- error: cannot find 'munmap' in scope
750 |
751 | if fileBacked {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:770:17: error: cannot find 'munmap' in scope
768 | if fileBacked {
769 |
770 | munmap(old_address, old_mapped_size)
| `- error: cannot find 'munmap' in scope
771 |
772 | self.mapped_size = new_mapped_size
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:774:115: error: cannot find 'errno' in scope
772 | self.mapped_size = new_mapped_size
773 |
774 | guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
| `- error: cannot find 'errno' in scope
775 |
776 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
/root/.swiftpm/swift-sdks/swift-6.3-RELEASE_android.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 | * thread.
57 | */
58 | #define errno (*__errno())
| `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:776:32: error: cannot find 'mmap' in scope
774 | guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
775 |
776 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
| `- error: cannot find 'mmap' in scope
777 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
778 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:776:59: error: cannot find 'PROT_READ' in scope
774 | guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
775 |
776 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
| `- error: cannot find 'PROT_READ' in scope
777 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
778 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:776:71: error: cannot find 'PROT_WRITE' in scope
774 | guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
775 |
776 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
| `- error: cannot find 'PROT_WRITE' in scope
777 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
778 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:776:83: error: cannot find 'MAP_SHARED' in scope
774 | guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
775 |
776 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
| `- error: cannot find 'MAP_SHARED' in scope
777 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
778 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:776:37: error: 'nil' requires a contextual type
774 | guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
775 |
776 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
| `- error: 'nil' requires a contextual type
777 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
778 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:777:35: error: cannot find 'MAP_FAILED' in scope
775 |
776 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
777 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
| `- error: cannot find 'MAP_FAILED' in scope
778 |
779 | self.address = _address!.bindMemory(to: Element.self, capacity: new_capacity)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:777:89: error: cannot find 'errno' in scope
775 |
776 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
777 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
| `- error: cannot find 'errno' in scope
778 |
779 | self.address = _address!.bindMemory(to: Element.self, capacity: new_capacity)
/root/.swiftpm/swift-sdks/swift-6.3-RELEASE_android.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 | * thread.
57 | */
58 | #define errno (*__errno())
| `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:786:33: error: cannot find 'mmap' in scope
784 | let _tail = UnsafeMutableRawPointer(old_address) + old_mapped_size
785 |
786 | let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: cannot find 'mmap' in scope
787 |
788 | if _extended != MAP_FAILED {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:786:61: error: cannot find 'PROT_READ' in scope
784 | let _tail = UnsafeMutableRawPointer(old_address) + old_mapped_size
785 |
786 | let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: cannot find 'PROT_READ' in scope
787 |
788 | if _extended != MAP_FAILED {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:786:73: error: cannot find 'PROT_WRITE' in scope
784 | let _tail = UnsafeMutableRawPointer(old_address) + old_mapped_size
785 |
786 | let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: cannot find 'PROT_WRITE' in scope
787 |
788 | if _extended != MAP_FAILED {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:786:85: error: cannot find 'MAP_ANONYMOUS' in scope
784 | let _tail = UnsafeMutableRawPointer(old_address) + old_mapped_size
785 |
786 | let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: cannot find 'MAP_ANONYMOUS' in scope
787 |
788 | if _extended != MAP_FAILED {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:786:101: error: cannot find 'MAP_PRIVATE' in scope
784 | let _tail = UnsafeMutableRawPointer(old_address) + old_mapped_size
785 |
786 | let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: cannot find 'MAP_PRIVATE' in scope
787 |
788 | if _extended != MAP_FAILED {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:788:33: error: cannot find 'MAP_FAILED' in scope
786 | let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
787 |
788 | if _extended != MAP_FAILED {
| `- error: cannot find 'MAP_FAILED' in scope
789 | if _extended == _tail {
790 | self.mapped_size = new_mapped_size
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:793:25: error: cannot find 'munmap' in scope
791 | return
792 | } else {
793 | munmap(_extended, _extended_size)
| `- error: cannot find 'munmap' in scope
794 | }
795 | }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:32: error: cannot find 'mmap' in scope
795 | }
796 |
797 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: cannot find 'mmap' in scope
798 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:59: error: cannot find 'PROT_READ' in scope
795 | }
796 |
797 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: cannot find 'PROT_READ' in scope
798 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:71: error: cannot find 'PROT_WRITE' in scope
795 | }
796 |
797 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: cannot find 'PROT_WRITE' in scope
798 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:83: error: cannot find 'MAP_ANONYMOUS' in scope
795 | }
796 |
797 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: cannot find 'MAP_ANONYMOUS' in scope
798 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:99: error: cannot find 'MAP_PRIVATE' in scope
795 | }
796 |
797 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: cannot find 'MAP_PRIVATE' in scope
798 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:37: error: 'nil' requires a contextual type
795 | }
796 |
797 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
| `- error: 'nil' requires a contextual type
798 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:798:35: error: cannot find 'MAP_FAILED' in scope
796 |
797 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
798 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
| `- error: cannot find 'MAP_FAILED' in scope
799 |
800 | let new_buffer = _address!.bindMemory(to: Element.self, capacity: new_capacity)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:798:89: error: cannot find 'errno' in scope
796 |
797 | let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
798 | guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
| `- error: cannot find 'errno' in scope
799 |
800 | let new_buffer = _address!.bindMemory(to: Element.self, capacity: new_capacity)
/root/.swiftpm/swift-sdks/swift-6.3-RELEASE_android.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 | * thread.
57 | */
58 | #define errno (*__errno())
| `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:804:17: error: cannot find 'munmap' in scope
802 | new_buffer.moveInitialize(from: old_address, count: count)
803 |
804 | munmap(old_address, old_mapped_size)
| `- error: cannot find 'munmap' in scope
805 |
806 | self.mapped_size = new_mapped_size
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:814:27: error: cannot find 'posix_madvise' in scope
812 | func set_memory_advise(_ advise: MemoryAdvise) {
813 | switch advise {
814 | case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
| `- error: cannot find 'posix_madvise' in scope
815 | case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 | case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:814:63: error: cannot find 'POSIX_MADV_NORMAL' in scope
812 | func set_memory_advise(_ advise: MemoryAdvise) {
813 | switch advise {
814 | case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
| `- error: cannot find 'POSIX_MADV_NORMAL' in scope
815 | case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 | case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:815:27: error: cannot find 'posix_madvise' in scope
813 | switch advise {
814 | case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 | case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
| `- error: cannot find 'posix_madvise' in scope
816 | case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 | case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:815:63: error: cannot find 'POSIX_MADV_SEQUENTIAL' in scope
813 | switch advise {
814 | case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 | case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
| `- error: cannot find 'POSIX_MADV_SEQUENTIAL' in scope
816 | case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 | case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:816:31: error: cannot find 'posix_madvise' in scope
814 | case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 | case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 | case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
| `- error: cannot find 'posix_madvise' in scope
817 | case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 | case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:816:67: error: cannot find 'POSIX_MADV_RANDOM' in scope
814 | case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 | case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 | case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
| `- error: cannot find 'POSIX_MADV_RANDOM' in scope
817 | case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 | case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:817:29: error: cannot find 'posix_madvise' in scope
815 | case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 | case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 | case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
| `- error: cannot find 'posix_madvise' in scope
818 | case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
819 | }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:817:65: error: cannot find 'POSIX_MADV_WILLNEED' in scope
815 | case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 | case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 | case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
| `- error: cannot find 'POSIX_MADV_WILLNEED' in scope
818 | case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
819 | }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:818:29: error: cannot find 'posix_madvise' in scope
816 | case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 | case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 | case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
| `- error: cannot find 'posix_madvise' in scope
819 | }
820 | }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:818:65: error: cannot find 'POSIX_MADV_DONTNEED' in scope
816 | case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 | case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 | case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
| `- error: cannot find 'POSIX_MADV_DONTNEED' in scope
819 | }
820 | }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:824:13: error: cannot find 'mlock' in scope
822 | @usableFromInline
823 | func memory_lock() {
824 | mlock(address, mapped_size)
| `- error: cannot find 'mlock' in scope
825 | }
826 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:829:13: error: cannot find 'munlock' in scope
827 | @usableFromInline
828 | func memory_unlock() {
829 | munlock(address, mapped_size)
| `- error: cannot find 'munlock' in scope
830 | }
831 | }
[706/749] Compiling DoggieCore String.swift
[707/749] Compiling DoggieCore replaceValue.swift
[708/749] Compiling DoggieCore SDXMLAttribute.swift
[709/749] Compiling DoggieCore SDXMLDocument.swift
[710/749] Compiling DoggieCore SDXMLElement.swift
[711/749] Compiling DoggieCore SDXMLParser.swift
[712/749] Compiling DoggieCore SDXMLString.swift
[713/749] Compiling DoggieCore Dictionary.swift
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:30:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
28 | @inlinable
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:31:47: warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
| |- warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
32 | for (key, value) in dictionary {
33 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:43:14: warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
41 | @inline(__always)
42 | public init(_ dictionary: [Key: Value]) {
43 | self.init(minimumCapacity: dictionary.count)
| |- warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
44 | for (key, value) in dictionary {
45 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:45:13: warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
43 | self.init(minimumCapacity: dictionary.count)
44 | for (key, value) in dictionary {
45 | self[key] = value
| |- warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
46 | }
47 | }
[714/749] Compiling DoggieCore Equatable.swift
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:30:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
28 | @inlinable
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:31:47: warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
| |- warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
32 | for (key, value) in dictionary {
33 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:43:14: warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
41 | @inline(__always)
42 | public init(_ dictionary: [Key: Value]) {
43 | self.init(minimumCapacity: dictionary.count)
| |- warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
44 | for (key, value) in dictionary {
45 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:45:13: warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
43 | self.init(minimumCapacity: dictionary.count)
44 | for (key, value) in dictionary {
45 | self[key] = value
| |- warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
46 | }
47 | }
[715/749] Compiling DoggieCore FloatingPoint.swift
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:30:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
28 | @inlinable
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:31:47: warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
| |- warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
32 | for (key, value) in dictionary {
33 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:43:14: warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
41 | @inline(__always)
42 | public init(_ dictionary: [Key: Value]) {
43 | self.init(minimumCapacity: dictionary.count)
| |- warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
44 | for (key, value) in dictionary {
45 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:45:13: warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
43 | self.init(minimumCapacity: dictionary.count)
44 | for (key, value) in dictionary {
45 | self[key] = value
| |- warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
46 | }
47 | }
[716/749] Compiling DoggieCore Integer.swift
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:30:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
28 | @inlinable
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:31:47: warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
| |- warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
32 | for (key, value) in dictionary {
33 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:43:14: warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
41 | @inline(__always)
42 | public init(_ dictionary: [Key: Value]) {
43 | self.init(minimumCapacity: dictionary.count)
| |- warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
44 | for (key, value) in dictionary {
45 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:45:13: warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
43 | self.init(minimumCapacity: dictionary.count)
44 | for (key, value) in dictionary {
45 | self[key] = value
| |- warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
46 | }
47 | }
[717/749] Compiling DoggieCore OptionOneCollection.swift
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:30:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
28 | @inlinable
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:31:47: warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
| |- warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
32 | for (key, value) in dictionary {
33 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:43:14: warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
41 | @inline(__always)
42 | public init(_ dictionary: [Key: Value]) {
43 | self.init(minimumCapacity: dictionary.count)
| |- warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
44 | for (key, value) in dictionary {
45 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:45:13: warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
43 | self.init(minimumCapacity: dictionary.count)
44 | for (key, value) in dictionary {
45 | self[key] = value
| |- warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
46 | }
47 | }
[718/749] Compiling DoggieCore Policy.swift
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:30:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
28 | @inlinable
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:31:47: warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
| |- warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
32 | for (key, value) in dictionary {
33 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:43:14: warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
41 | @inline(__always)
42 | public init(_ dictionary: [Key: Value]) {
43 | self.init(minimumCapacity: dictionary.count)
| |- warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
44 | for (key, value) in dictionary {
45 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:45:13: warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
43 | self.init(minimumCapacity: dictionary.count)
44 | for (key, value) in dictionary {
45 | self[key] = value
| |- warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
46 | }
47 | }
[719/749] Compiling DoggieCore RawBitPattern.swift
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:30:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
28 | @inlinable
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:31:47: warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
| |- warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
32 | for (key, value) in dictionary {
33 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:43:14: warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
41 | @inline(__always)
42 | public init(_ dictionary: [Key: Value]) {
43 | self.init(minimumCapacity: dictionary.count)
| |- warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
44 | for (key, value) in dictionary {
45 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:45:13: warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
43 | self.init(minimumCapacity: dictionary.count)
44 | for (key, value) in dictionary {
45 | self[key] = value
| |- warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
46 | }
47 | }
[720/749] Compiling DoggieCore MediaType.swift
[721/749] Compiling DoggieCore BinaryFixedPoint.swift
[722/749] Compiling DoggieCore ByteCodable.swift
[723/749] Compiling DoggieCore Endianness.swift
[724/749] Compiling DoggieCore Signature.swift
[725/749] Compiling DoggieCore CollectionExtension.swift
[726/749] Compiling DoggieCore Decimal.swift
[727/749] Compiling DoggieCore Parallel.swift
[728/749] Compiling DoggieCore TypePunned.swift
[729/749] Compiling DoggieCore TypedData.swift
[730/749] Compiling DoggieCore URLComponents.swift
[731/749] Compiling DoggieCore UUID.swift
[732/749] Compiling DoggieCore WeakDictionary.swift
[733/749] Compiling DoggieCore WeakSet.swift
[734/749] Emitting module DoggieCore
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
| `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
| `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 | public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 | public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
| `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URL : Equatable, Sendable, Hashable {
| `- note: 'URL' declares conformance to protocol 'Sendable' here
3 | public init?(string: __shared String)
4 | public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
| `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URLComponents : Hashable, Equatable, Sendable {
| `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
3 | public init()
4 | public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
| `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
| `- note: 'Data' declares conformance to protocol 'Sendable' here
3 | public typealias Index = Int
4 | public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
| `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
| `- note: 'Date' declares conformance to protocol 'Sendable' here
3 | public static let timeIntervalBetween1970AndReferenceDate: Double
4 | public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
| `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct DateComponents : Hashable, Equatable, Sendable {
| `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
3 | public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
4 | public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
| `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct TimeZone : Hashable, Equatable, Sendable {
| `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
3 | public init?(identifier: __shared String)
4 | public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
| `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Calendar : Hashable, Equatable, Sendable {
| `- note: 'Calendar' declares conformance to protocol 'Sendable' here
3 | public enum Identifier : Sendable, CustomDebugStringConvertible {
4 | case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
| `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Locale : Hashable, Equatable, Sendable {
| `- note: 'Locale' declares conformance to protocol 'Sendable' here
3 | public enum LanguageDirection : UInt, Sendable {
4 | case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
| `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
| `- note: 'UUID' declares conformance to protocol 'Sendable' here
3 | public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
4 | public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
| `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:14:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
| `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
15 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
| `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:14:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedDictionary: @unchecked Sendable
| `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
15 | where Key: Sendable, Value: Sendable {}
16 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:287:22: warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
268 | @inlinable
269 | @inline(__always)
270 | public mutating func append<S: Sequence>(contentsOf newElements: S) where S.Element == Element {
| `- note: 'S' previously declared here
271 |
272 | let old_count = base.count
:
285 |
286 | @inline(__always)
287 | func _append<S: Sequence>(_ newElements: S) where S.Element == Element {
| `- warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 |
289 | let buffer = UnsafeMutableBufferPointer(start: base.address + old_count, count: underestimatedCount - old_count)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:375:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
373 |
374 | @inline(__always)
375 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
376 |
377 | let buffer = UnsafeMutableBufferPointer(start: base.address + subRange.lowerBound, count: newElements_count)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:402:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
400 |
401 | @inline(__always)
402 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
403 |
404 | let buffer = UnsafeMutableBufferPointer(start: address, count: newElements_count)
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:103:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
101 |
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
105 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:104:48: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
105 | }
106 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/JsonConvertible.swift:155:44: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
153 | @inlinable
154 | public func toJson() -> Json {
155 | return .dictionary(Dictionary(self.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
156 | }
157 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:30:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
28 | @inlinable
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:31:47: warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
29 | @inline(__always)
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
| |- warning: property 'count' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
32 | for (key, value) in dictionary {
33 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'makeIterator()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:32:9: warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
30 | public init(_ dictionary: OrderedDictionary<Key, Value>) {
31 | self.init(minimumCapacity: dictionary.count)
32 | for (key, value) in dictionary {
| |- warning: instance method 'next()' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
33 | self[key] = value
34 | }
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:43:14: warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
41 | @inline(__always)
42 | public init(_ dictionary: [Key: Value]) {
43 | self.init(minimumCapacity: dictionary.count)
| |- warning: initializer 'init(minimumCapacity:persistent:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
44 | for (key, value) in dictionary {
45 | self[key] = value
/host/spi-builder-workspace/Sources/DoggieCore/Swift/Dictionary.swift:45:13: warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
43 | self.init(minimumCapacity: dictionary.count)
44 | for (key, value) in dictionary {
45 | self[key] = value
| |- warning: subscript 'subscript(_:)' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
46 | }
47 | }
[735/749] Compiling DoggieCore Inflate.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
| `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
| `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 | public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 | public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
| `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URL : Equatable, Sendable, Hashable {
| `- note: 'URL' declares conformance to protocol 'Sendable' here
3 | public init?(string: __shared String)
4 | public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
| `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URLComponents : Hashable, Equatable, Sendable {
| `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
3 | public init()
4 | public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
| `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
| `- note: 'Data' declares conformance to protocol 'Sendable' here
3 | public typealias Index = Int
4 | public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
| `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
| `- note: 'Date' declares conformance to protocol 'Sendable' here
3 | public static let timeIntervalBetween1970AndReferenceDate: Double
4 | public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
| `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct DateComponents : Hashable, Equatable, Sendable {
| `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
3 | public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
4 | public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
| `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct TimeZone : Hashable, Equatable, Sendable {
| `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
3 | public init?(identifier: __shared String)
4 | public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
| `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Calendar : Hashable, Equatable, Sendable {
| `- note: 'Calendar' declares conformance to protocol 'Sendable' here
3 | public enum Identifier : Sendable, CustomDebugStringConvertible {
4 | case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
| `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Locale : Hashable, Equatable, Sendable {
| `- note: 'Locale' declares conformance to protocol 'Sendable' here
3 | public enum LanguageDirection : UInt, Sendable {
4 | case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
| `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
| `- note: 'UUID' declares conformance to protocol 'Sendable' here
3 | public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
4 | public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
| `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:14:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
| `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
15 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
| `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:14:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedDictionary: @unchecked Sendable
| `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
15 | where Key: Sendable, Value: Sendable {}
16 |
[736/749] Compiling DoggieCore zlib.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
| `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
| `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 | public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 | public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
| `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URL : Equatable, Sendable, Hashable {
| `- note: 'URL' declares conformance to protocol 'Sendable' here
3 | public init?(string: __shared String)
4 | public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
| `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URLComponents : Hashable, Equatable, Sendable {
| `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
3 | public init()
4 | public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
| `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
| `- note: 'Data' declares conformance to protocol 'Sendable' here
3 | public typealias Index = Int
4 | public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
| `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
| `- note: 'Date' declares conformance to protocol 'Sendable' here
3 | public static let timeIntervalBetween1970AndReferenceDate: Double
4 | public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
| `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct DateComponents : Hashable, Equatable, Sendable {
| `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
3 | public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
4 | public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
| `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct TimeZone : Hashable, Equatable, Sendable {
| `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
3 | public init?(identifier: __shared String)
4 | public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
| `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Calendar : Hashable, Equatable, Sendable {
| `- note: 'Calendar' declares conformance to protocol 'Sendable' here
3 | public enum Identifier : Sendable, CustomDebugStringConvertible {
4 | case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
| `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Locale : Hashable, Equatable, Sendable {
| `- note: 'Locale' declares conformance to protocol 'Sendable' here
3 | public enum LanguageDirection : UInt, Sendable {
4 | case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
| `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
| `- note: 'UUID' declares conformance to protocol 'Sendable' here
3 | public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
4 | public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
| `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:14:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
| `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
15 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
| `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:14:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedDictionary: @unchecked Sendable
| `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
15 | where Key: Sendable, Value: Sendable {}
16 |
[737/749] Compiling DoggieCore Sendable.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
| `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
| `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 | public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 | public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
| `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URL : Equatable, Sendable, Hashable {
| `- note: 'URL' declares conformance to protocol 'Sendable' here
3 | public init?(string: __shared String)
4 | public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
| `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URLComponents : Hashable, Equatable, Sendable {
| `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
3 | public init()
4 | public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
| `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
| `- note: 'Data' declares conformance to protocol 'Sendable' here
3 | public typealias Index = Int
4 | public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
| `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
| `- note: 'Date' declares conformance to protocol 'Sendable' here
3 | public static let timeIntervalBetween1970AndReferenceDate: Double
4 | public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
| `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct DateComponents : Hashable, Equatable, Sendable {
| `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
3 | public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
4 | public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
| `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct TimeZone : Hashable, Equatable, Sendable {
| `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
3 | public init?(identifier: __shared String)
4 | public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
| `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Calendar : Hashable, Equatable, Sendable {
| `- note: 'Calendar' declares conformance to protocol 'Sendable' here
3 | public enum Identifier : Sendable, CustomDebugStringConvertible {
4 | case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
| `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Locale : Hashable, Equatable, Sendable {
| `- note: 'Locale' declares conformance to protocol 'Sendable' here
3 | public enum LanguageDirection : UInt, Sendable {
4 | case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
| `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
| `- note: 'UUID' declares conformance to protocol 'Sendable' here
3 | public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
4 | public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
| `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:14:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
| `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
15 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
| `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:14:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedDictionary: @unchecked Sendable
| `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
15 | where Key: Sendable, Value: Sendable {}
16 |
[738/749] Compiling DoggieCore SerialRunLoop.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
| `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
| `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 | public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 | public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
| `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URL : Equatable, Sendable, Hashable {
| `- note: 'URL' declares conformance to protocol 'Sendable' here
3 | public init?(string: __shared String)
4 | public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
| `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URLComponents : Hashable, Equatable, Sendable {
| `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
3 | public init()
4 | public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
| `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
| `- note: 'Data' declares conformance to protocol 'Sendable' here
3 | public typealias Index = Int
4 | public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
| `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
| `- note: 'Date' declares conformance to protocol 'Sendable' here
3 | public static let timeIntervalBetween1970AndReferenceDate: Double
4 | public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
| `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct DateComponents : Hashable, Equatable, Sendable {
| `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
3 | public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
4 | public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
| `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct TimeZone : Hashable, Equatable, Sendable {
| `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
3 | public init?(identifier: __shared String)
4 | public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
| `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Calendar : Hashable, Equatable, Sendable {
| `- note: 'Calendar' declares conformance to protocol 'Sendable' here
3 | public enum Identifier : Sendable, CustomDebugStringConvertible {
4 | case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
| `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Locale : Hashable, Equatable, Sendable {
| `- note: 'Locale' declares conformance to protocol 'Sendable' here
3 | public enum LanguageDirection : UInt, Sendable {
4 | case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
| `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
| `- note: 'UUID' declares conformance to protocol 'Sendable' here
3 | public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
4 | public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
| `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:14:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
| `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
15 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
| `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:14:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedDictionary: @unchecked Sendable
| `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
15 | where Key: Sendable, Value: Sendable {}
16 |
[739/749] Compiling DoggieCore UnsafeSendable.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
| `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
| `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 | public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 | public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
| `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URL : Equatable, Sendable, Hashable {
| `- note: 'URL' declares conformance to protocol 'Sendable' here
3 | public init?(string: __shared String)
4 | public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
| `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URLComponents : Hashable, Equatable, Sendable {
| `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
3 | public init()
4 | public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
| `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
| `- note: 'Data' declares conformance to protocol 'Sendable' here
3 | public typealias Index = Int
4 | public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
| `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
| `- note: 'Date' declares conformance to protocol 'Sendable' here
3 | public static let timeIntervalBetween1970AndReferenceDate: Double
4 | public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
| `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct DateComponents : Hashable, Equatable, Sendable {
| `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
3 | public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
4 | public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
| `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct TimeZone : Hashable, Equatable, Sendable {
| `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
3 | public init?(identifier: __shared String)
4 | public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
| `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Calendar : Hashable, Equatable, Sendable {
| `- note: 'Calendar' declares conformance to protocol 'Sendable' here
3 | public enum Identifier : Sendable, CustomDebugStringConvertible {
4 | case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
| `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Locale : Hashable, Equatable, Sendable {
| `- note: 'Locale' declares conformance to protocol 'Sendable' here
3 | public enum LanguageDirection : UInt, Sendable {
4 | case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
| `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
| `- note: 'UUID' declares conformance to protocol 'Sendable' here
3 | public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
4 | public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
| `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:14:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
| `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
15 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
| `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:14:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedDictionary: @unchecked Sendable
| `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
15 | where Key: Sendable, Value: Sendable {}
16 |
[740/749] Compiling DoggieCore Exported.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
| `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
| `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 | public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 | public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
| `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URL : Equatable, Sendable, Hashable {
| `- note: 'URL' declares conformance to protocol 'Sendable' here
3 | public init?(string: __shared String)
4 | public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
| `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URLComponents : Hashable, Equatable, Sendable {
| `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
3 | public init()
4 | public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
| `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
| `- note: 'Data' declares conformance to protocol 'Sendable' here
3 | public typealias Index = Int
4 | public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
| `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
| `- note: 'Date' declares conformance to protocol 'Sendable' here
3 | public static let timeIntervalBetween1970AndReferenceDate: Double
4 | public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
| `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct DateComponents : Hashable, Equatable, Sendable {
| `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
3 | public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
4 | public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
| `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct TimeZone : Hashable, Equatable, Sendable {
| `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
3 | public init?(identifier: __shared String)
4 | public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
| `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Calendar : Hashable, Equatable, Sendable {
| `- note: 'Calendar' declares conformance to protocol 'Sendable' here
3 | public enum Identifier : Sendable, CustomDebugStringConvertible {
4 | case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
| `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Locale : Hashable, Equatable, Sendable {
| `- note: 'Locale' declares conformance to protocol 'Sendable' here
3 | public enum LanguageDirection : UInt, Sendable {
4 | case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
| `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
| `- note: 'UUID' declares conformance to protocol 'Sendable' here
3 | public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
4 | public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
| `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:14:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
| `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
15 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
| `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:14:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedDictionary: @unchecked Sendable
| `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
15 | where Key: Sendable, Value: Sendable {}
16 |
[741/749] Compiling DoggieCore Algorithm.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
| `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
| `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 | public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 | public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
| `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URL : Equatable, Sendable, Hashable {
| `- note: 'URL' declares conformance to protocol 'Sendable' here
3 | public init?(string: __shared String)
4 | public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
| `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URLComponents : Hashable, Equatable, Sendable {
| `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
3 | public init()
4 | public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
| `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
| `- note: 'Data' declares conformance to protocol 'Sendable' here
3 | public typealias Index = Int
4 | public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
| `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
| `- note: 'Date' declares conformance to protocol 'Sendable' here
3 | public static let timeIntervalBetween1970AndReferenceDate: Double
4 | public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
| `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct DateComponents : Hashable, Equatable, Sendable {
| `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
3 | public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
4 | public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
| `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct TimeZone : Hashable, Equatable, Sendable {
| `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
3 | public init?(identifier: __shared String)
4 | public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
| `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Calendar : Hashable, Equatable, Sendable {
| `- note: 'Calendar' declares conformance to protocol 'Sendable' here
3 | public enum Identifier : Sendable, CustomDebugStringConvertible {
4 | case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
| `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Locale : Hashable, Equatable, Sendable {
| `- note: 'Locale' declares conformance to protocol 'Sendable' here
3 | public enum LanguageDirection : UInt, Sendable {
4 | case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
| `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
| `- note: 'UUID' declares conformance to protocol 'Sendable' here
3 | public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
4 | public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
| `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:14:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
| `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
15 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
| `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:14:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedDictionary: @unchecked Sendable
| `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
15 | where Key: Sendable, Value: Sendable {}
16 |
[742/749] Compiling DoggieCore Cache.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
| `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
| `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 | public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 | public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
| `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URL : Equatable, Sendable, Hashable {
| `- note: 'URL' declares conformance to protocol 'Sendable' here
3 | public init?(string: __shared String)
4 | public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
| `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URLComponents : Hashable, Equatable, Sendable {
| `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
3 | public init()
4 | public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
| `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
| `- note: 'Data' declares conformance to protocol 'Sendable' here
3 | public typealias Index = Int
4 | public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
| `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
| `- note: 'Date' declares conformance to protocol 'Sendable' here
3 | public static let timeIntervalBetween1970AndReferenceDate: Double
4 | public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
| `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct DateComponents : Hashable, Equatable, Sendable {
| `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
3 | public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
4 | public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
| `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct TimeZone : Hashable, Equatable, Sendable {
| `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
3 | public init?(identifier: __shared String)
4 | public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
| `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Calendar : Hashable, Equatable, Sendable {
| `- note: 'Calendar' declares conformance to protocol 'Sendable' here
3 | public enum Identifier : Sendable, CustomDebugStringConvertible {
4 | case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
| `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Locale : Hashable, Equatable, Sendable {
| `- note: 'Locale' declares conformance to protocol 'Sendable' here
3 | public enum LanguageDirection : UInt, Sendable {
4 | case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
| `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
| `- note: 'UUID' declares conformance to protocol 'Sendable' here
3 | public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
4 | public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
| `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:14:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
| `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
15 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
| `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:14:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
12 | //===----------------------------------------------------------------------===//
13 |
14 | extension OrderedDictionary: @unchecked Sendable
| `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
15 | where Key: Sendable, Value: Sendable {}
16 |
[743/749] Compiling DoggieCore Json.swift
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:103:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
101 |
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
105 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:104:48: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
105 | }
106 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/JsonConvertible.swift:155:44: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
153 | @inlinable
154 | public func toJson() -> Json {
155 | return .dictionary(Dictionary(self.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
156 | }
157 | }
[744/749] Compiling DoggieCore JsonCodable.swift
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:103:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
101 |
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
105 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:104:48: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
105 | }
106 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/JsonConvertible.swift:155:44: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
153 | @inlinable
154 | public func toJson() -> Json {
155 | return .dictionary(Dictionary(self.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
156 | }
157 | }
[745/749] Compiling DoggieCore JsonConvertible.swift
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:103:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
101 |
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
105 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:104:48: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
105 | }
106 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/JsonConvertible.swift:155:44: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
153 | @inlinable
154 | public func toJson() -> Json {
155 | return .dictionary(Dictionary(self.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
156 | }
157 | }
[746/749] Compiling DoggieCore JsonNumber.swift
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:103:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
101 |
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
105 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:104:48: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
105 | }
106 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/JsonConvertible.swift:155:44: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
153 | @inlinable
154 | public func toJson() -> Json {
155 | return .dictionary(Dictionary(self.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
156 | }
157 | }
[747/749] Compiling DoggieCore JsonNumberCodable.swift
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:103:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
101 |
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
105 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:104:48: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
105 | }
106 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/JsonConvertible.swift:155:44: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
153 | @inlinable
154 | public func toJson() -> Json {
155 | return .dictionary(Dictionary(self.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
156 | }
157 | }
[748/749] Compiling DoggieCore FileExtension.swift
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:103:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
101 |
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
105 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:104:48: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
105 | }
106 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/JsonConvertible.swift:155:44: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
153 | @inlinable
154 | public func toJson() -> Json {
155 | return .dictionary(Dictionary(self.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
156 | }
157 | }
[749/749] Compiling DoggieCore MIMEType.swift
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:103:12: warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
101 |
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
| |- warning: generic struct 'OrderedDictionary' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
105 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/Json.swift:104:48: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
102 | @inlinable
103 | public init<Value: JsonConvertible>(_ elements: OrderedDictionary<String, Value>) {
104 | self = .dictionary(Dictionary(elements.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
105 | }
106 | }
/host/spi-builder-workspace/Sources/DoggieCore/Json/JsonConvertible.swift:155:44: warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
153 | @inlinable
154 | public func toJson() -> Json {
155 | return .dictionary(Dictionary(self.mapValues { $0.toJson() }))
| |- warning: instance method 'mapValues' cannot be used in an '@inlinable' function because 'OrderedCollections' was not imported by this file; this is an error in the Swift 6 language mode
| `- note: The missing import of module 'OrderedCollections' will be added implicitly
156 | }
157 | }
BUILD FAILURE 6.3 android