Skip to content

Commit 290f26b

Browse files
committed
Frontend: Remove the temporary Actors2 feature definition.
1 parent 670f395 commit 290f26b

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

include/swift/Basic/Features.def

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ LANGUAGE_FEATURE(AsyncAwait, 296, "async/await", true)
6464
LANGUAGE_FEATURE(EffectfulProp, 310, "Effectful properties", true)
6565
LANGUAGE_FEATURE(MarkerProtocol, 0, "@_marker protocol", true)
6666
LANGUAGE_FEATURE(Actors, 0, "actors", true)
67-
LANGUAGE_FEATURE(Actors2, 0, "actors #2 (TEMPORARY)", true)
6867
LANGUAGE_FEATURE(ConcurrentFunctions, 0, "@concurrent functions", true)
6968
LANGUAGE_FEATURE(RethrowsProtocol, 0, "@rethrows protocol", true)
7069
LANGUAGE_FEATURE(GlobalActors, 316, "Global actors", true)

lib/AST/ASTPrinter.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2738,10 +2738,6 @@ static bool usesFeatureConcurrentFunctions(Decl *decl) {
27382738
return false;
27392739
}
27402740

2741-
static bool usesFeatureActors2(Decl *decl) {
2742-
return false;
2743-
}
2744-
27452741
static bool usesFeatureSendable(Decl *decl) {
27462742
if (auto func = dyn_cast<AbstractFunctionDecl>(decl)) {
27472743
if (func->isSendable())

0 commit comments

Comments
 (0)