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
[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
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.";
609
609
},
610
610
{
@@ -620,7 +620,7 @@
620
620
MainActor = ( "-default-isolation=MainActor" );
621
621
};
622
622
DisplayName = "Default Actor Isolation";
623
-
Category = "Language";
623
+
Category = "Concurrency";
624
624
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.";
0 commit comments