-
Notifications
You must be signed in to change notification settings - Fork 319
Fix a couple build warnings #2202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@swift-ci Please test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh I missed this one - I was just about to put this up. There's another if you want to update this one, or I'll do a separate:
-extension OSSignposter: @retroactive @unchecked Sendable {}
-extension OSSignpostID: @retroactive @unchecked Sendable {}
-extension OSSignpostIntervalState: @retroactive @unchecked Sendable {}
Those are all in since 6.1 (first two in 6.0 and last in 6.1).
@@ -17,7 +17,7 @@ import SwiftSyntax | |||
|
|||
/// Describes types that provide one or more code actions based on purely | |||
/// syntactic information. | |||
protocol SyntaxCodeActionProvider { | |||
protocol SyntaxCodeActionProvider: SendableMetatype { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only available in 6.2. I added a:
+#if compiler(<6.2)
+package typealias SendableMetatype = Any
+#endif
in AsyncUtils.swift
in mine.
3995215
to
0b3db5e
Compare
@swift-ci Please test |
@swift-ci Please test Windows |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
@swift-ci Please test Windows |
No description provided.