Skip to content

Commit df96313

Browse files
committed
Remove experimental feature unsafeExpression
With SE-0458 being enabled by default, we no longer need this.
1 parent 219fa33 commit df96313

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

CodeGeneration/Sources/SyntaxSupport/ExperimentalFeatures.swift

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ public enum ExperimentalFeature: String, CaseIterable {
2121
case coroutineAccessors
2222
case valueGenerics
2323
case abiAttribute
24-
case unsafeExpression
2524

2625
/// The name of the feature as it is written in the compiler's `Features.def` file.
2726
public var featureName: String {
@@ -42,8 +41,6 @@ public enum ExperimentalFeature: String, CaseIterable {
4241
return "ValueGenerics"
4342
case .abiAttribute:
4443
return "ABIAttribute"
45-
case .unsafeExpression:
46-
return "WarnUnsafe"
4744
}
4845
}
4946

@@ -66,8 +63,6 @@ public enum ExperimentalFeature: String, CaseIterable {
6663
return "value generics"
6764
case .abiAttribute:
6865
return "@abi attribute"
69-
case .unsafeExpression:
70-
return "'unsafe' expression"
7166
}
7267
}
7368

0 commit comments

Comments
 (0)