Skip to content

Commit e8843b6

Browse files
authored
fix syntax
1 parent f58a64f commit e8843b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Sema/TypeCheckStorage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ static void enumerateStoredPropertiesAndMissing(
165165
ASTContext &ctx = decl->getASTContext();
166166
for (auto *member : decl->getMembers()) {
167167
if (auto *var = dyn_cast<VarDecl>(member)) {
168-
if (!var->isStatic() && var->hasStorage())) {
168+
if (!var->isStatic() && var->hasStorage()) {
169169
if (var->getName() == ctx.Id_id) {
170170
distributedActorId = var;
171171
} else if (var->getName() == ctx.Id_actorSystem) {

0 commit comments

Comments
 (0)