You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Build warnings, when building for target macos, when using latest development swift toolchain:
SwiftGodot/.build/plugins/outputs/swiftgodot/SwiftGodot/destination/CodeGeneratorPlugin/GeneratedSources/generated-builtin/PackedFloat32Array.swift:3:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftGodot' may lead to instability during execution
1 | // This file is autogenerated, do not edit
2 |
3 | @_implementationOnly import GDExtension
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftGodot' may lead to instability during execution
4 |
5 | // This file is autogenerated, do not edit
Lots of the above warning (on all the generated files), and a couple more below:
/Users/jordanschidlowsky/WINTERPIXEL/PROJECTS/ballz/game/swift/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:175:35: warning: conformance of 'LockStorage<Value>' to protocol 'Sendable' is already unavailable
119 | // See also: https://github.com/apple/swift/pull/40000
120 | @usableFromInline
121 | final class LockStorage<Value>: ManagedBuffer<Value, LockPrimitive> {
| `- note: 'LockStorage<Value>' inherits conformance to protocol 'Sendable' from superclass here
122 |
123 | @inlinable
:
173 | }
174 |
175 | extension LockStorage: @unchecked Sendable { }
| `- warning: conformance of 'LockStorage<Value>' to protocol 'Sendable' is already unavailable
176 |
177 | /// A threading lock based on `libpthread` instead of `libdispatch`.
/Users/jordanschidlowsky/WINTERPIXEL/PROJECTS/ballz/game/swift/SwiftGodot/Sources/SwiftGodot/Core/NIOLock.swift:187:18: warning: stored property '_storage' of 'Sendable'-conforming struct 'NIOLock' has non-sendable type 'LockStorage<Void>'; this is an error in the Swift 6 language mode
119 | // See also: https://github.com/apple/swift/pull/40000
120 | @usableFromInline
121 | final class LockStorage<Value>: ManagedBuffer<Value, LockPrimitive> {
| `- note: generic class 'LockStorage' does not conform to the 'Sendable' protocol
122 |
123 | @inlinable
:
185 | public struct NIOLock {
186 | @usableFromInline
187 | internal let _storage: LockStorage<Void>
| `- warning: stored property '_storage' of 'Sendable'-conforming struct 'NIOLock' has non-sendable type 'LockStorage<Void>'; this is an error in the Swift 6 language mode
188 |
189 | /// Create a new lock.
The text was updated successfully, but these errors were encountered:
Build warnings, when building for target macos, when using latest development swift toolchain:
Lots of the above warning (on all the generated files), and a couple more below:
The text was updated successfully, but these errors were encountered: