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
Make structured Swift representation types Sendable (#2115)
Motivation:
The structured Swift types aren't marked as Sendable. This means that
defining a 'static let' isn't possible, and a static computed property
must be used instead. This is fine, just verbose.
Modifications:
- Make all structured swift representation types 'Sendable'
Result:
Can use 'static let' with structured Swift types
0 commit comments