Skip to content

Commit eb04729

Browse files
committed
Concurrency: Fix a formatting nit
1 parent 6e14999 commit eb04729

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/Sema/TypeCheckConcurrency.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4249,7 +4249,9 @@ void swift::checkFunctionActorIsolation(AbstractFunctionDecl *decl) {
42494249
ActorIsolationChecker checker(decl);
42504250
if (auto body = decl->getBody()) {
42514251
body->walk(checker);
4252-
if(ctx.LangOpts.hasFeature(Feature::GroupActorErrors)){ checker.diagnoseIsolationErrors(); }
4252+
if (ctx.LangOpts.hasFeature(Feature::GroupActorErrors)) {
4253+
checker.diagnoseIsolationErrors();
4254+
}
42534255
}
42544256
if (auto ctor = dyn_cast<ConstructorDecl>(decl)) {
42554257
if (auto superInit = ctor->getSuperInitCall())

0 commit comments

Comments
 (0)