File tree Expand file tree Collapse file tree 1 file changed +21
-3
lines changed
Sources/SWBUniversalPlatform/Specs Expand file tree Collapse file tree 1 file changed +21
-3
lines changed Original file line number Diff line number Diff line change 625
625
},
626
626
{
627
627
Name = "SWIFT_STRICT_MEMORY_SAFETY";
628
- Type = Boolean;
628
+ Type = Enumeration;
629
+ Values = (
630
+ YES,
631
+ MIGRATE,
632
+ NO,
633
+ );
629
634
DefaultValue = "NO";
630
635
CommandLineArgs = {
631
636
YES = ( "-strict-memory-safety" );
637
+ MIGRATE = ( "-strict-memory-safety:migrate" );
632
638
NO = ();
633
639
};
634
640
DisplayName = "Strict Memory Safety";
820
826
821
827
{
822
828
Name = "SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY";
823
- Type = Boolean;
829
+ Type = Enumeration;
830
+ Values = (
831
+ YES,
832
+ MIGRATE,
833
+ NO,
834
+ );
824
835
DefaultValue = NO;
825
836
CommandLineArgs = {
826
837
YES = ( "-enable-upcoming-feature", "MemberImportVisibility" );
838
+ MIGRATE = ( "-enable-upcoming-feature", "MemberImportVisibility:migrate" );
827
839
NO = ();
828
840
};
829
841
DisplayName = "Member Import Visibility";
852
864
853
865
{
854
866
Name = "SWIFT_UPCOMING_FEATURE_INFER_ISOLATED_CONFORMANCES";
855
- Type = Boolean;
867
+ Type = Enumeration;
868
+ Values = (
869
+ YES,
870
+ MIGRATE,
871
+ NO,
872
+ );
856
873
DefaultValue = "$(SWIFT_APPROACHABLE_CONCURRENCY)";
857
874
CommandLineArgs = {
858
875
YES = ( "-enable-upcoming-feature", "InferIsolatedConformances" );
876
+ MIGRATE = ( "-enable-upcoming-feature", "InferIsolatedConformances:migrate" );
859
877
NO = ();
860
878
};
861
879
DisplayName = "Infer Isolated Conformances";
You can’t perform that action at this time.
0 commit comments