Skip to content

Commit 41baf34

Browse files
committed
[Swift] Introduce a new Concurrency settings category
This new category groups together a few import concurrency related settings: - Approachable Concurrency - Default Actor Isolation - Strict Concurrency Checking
1 parent ba7839d commit 41baf34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/SWBUniversalPlatform/Specs/Swift.xcspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@
604604
"<<otherwise>>" = ( "-enable-upcoming-feature", "StrictConcurrency" );
605605
};
606606
DisplayName = "Strict Concurrency Checking";
607-
Category = "Upcoming Features";
607+
Category = "Concurrency";
608608
Description = "Enables strict concurrency checking to produce warnings for possible data races. This is always 'complete' when in the Swift 6 language mode and produces errors instead of warnings.";
609609
},
610610
{
@@ -620,7 +620,7 @@
620620
MainActor = ( "-default-isolation=MainActor" );
621621
};
622622
DisplayName = "Default Actor Isolation";
623-
Category = "Language";
623+
Category = "Concurrency";
624624
Description = "Controls default actor isolation for unannotated code. When set to 'MainActor', `@MainActor` isolation will be inferred by default to mitigate false-positive data-race safety errors in sequential code.";
625625
},
626626
{

0 commit comments

Comments
 (0)