Skip to content

Commit 50358b2

Browse files
author
David Ungar
committed
cosmetic
1 parent 44c6248 commit 50358b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/AST/ASTScopeCreation.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,8 @@ void ScopeCreator::addChildrenForAllExplicitAccessors(AbstractStorageDecl *asd,
526526
// Accessors are always nested within their abstract storage
527527
// declaration. The nesting may not be immediate, because subscripts may
528528
// have intervening scopes for generics.
529-
if (!isDuplicate(accessor) && parent->getEnclosingAbstractStorageDecl() == accessor->getStorage())
529+
if (!isDuplicate(accessor) &&
530+
parent->getEnclosingAbstractStorageDecl() == accessor->getStorage())
530531
ASTVisitorForScopeCreation().visitAbstractFunctionDecl(accessor, parent,
531532
*this);
532533
}

0 commit comments

Comments
 (0)