Skip to content

Commit 3c4fec8

Browse files
author
Brian King
committed
Make sure braces are consistently cuddled
1 parent b389fc3 commit 3c4fec8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/Sema/MiscDiagnostics.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2013,8 +2013,7 @@ class VarDeclUsageChecker : public ASTWalker {
20132013
VarDecls[VD] = RK_Read|RK_Written;
20142014
});
20152015
}
2016-
}
2017-
else if (node.is<Stmt *>()) {
2016+
} else if (node.is<Stmt *>()) {
20182017
// Flag all variables in guard statements
20192018
Stmt *S = node.get<Stmt *>();
20202019
GuardStmt *GS = dyn_cast<GuardStmt>(S);

0 commit comments

Comments
 (0)