Skip to content

Commit d4598c2

Browse files
committed
Fix messed up indentation in TypeCheckMacros.cpp
1 parent 373bc85 commit d4598c2

File tree

4 files changed

+164
-177
lines changed

4 files changed

+164
-177
lines changed

lib/Parse/ParseDecl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4768,7 +4768,7 @@ bool Parser::isStartOfSwiftDecl(bool allowPoundIfAttributes) {
47684768
// Skip a #if that contains only attributes in all branches. These will be
47694769
// parsed as attributes of a declaration, not as separate declarations.
47704770
if (Tok.is(tok::pound_if) && allowPoundIfAttributes) {
4771-
BacktrackingScope backtrack(*this);
4771+
BacktrackingScope backtrack(*this);
47724772
bool sawAnyAttributes = false;
47734773
return skipIfConfigOfAttributes(sawAnyAttributes) &&
47744774
(Tok.is(tok::eof) || (sawAnyAttributes && isStartOfSwiftDecl()));

0 commit comments

Comments
 (0)