We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecee9a9 commit c6fe393Copy full SHA for c6fe393
Package.swift
@@ -368,13 +368,13 @@ extension BuildSettingCondition {
368
///
369
/// This constant is used to conditionally enable features on Android only on
370
/// newer compilers.
371
-static let androidIfCompiler6_3: some Collection<Platform> = {
+nonisolated(unsafe) var androidIfCompiler6_3: some Collection<Platform> {
372
#if compiler(>=6.3)
373
CollectionOfOne(.android)
374
#else
375
EmptyCollection()
376
#endif
377
-}()
+}
378
379
extension Array where Element == PackageDescription.SwiftSetting {
380
/// Settings intended to be applied to every Swift target in this package.
0 commit comments