Skip to content

Commit 8641090

Browse files
Daniel Phillipsdanielphillips
authored andcommitted
Preserve whitespace for first argument on next line.
This whitespace has meaning since it's denoting that this line is the first argument of the previous lines function call.
1 parent 03e07ba commit 8641090

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Sema/TypeCheckDecl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3173,7 +3173,7 @@ class DeclChecker : public DeclVisitor<DeclChecker> {
31733173
TAD->getUnderlyingTypeLoc().setInvalidType(TC.Context);
31743174
} else if (TAD->getDeclContext()->isGenericContext()) {
31753175
TAD->setInterfaceType(
3176-
TC.getInterfaceTypeFromInternalType(TAD->getDeclContext(),
3176+
TC.getInterfaceTypeFromInternalType(TAD->getDeclContext(),
31773177
TAD->getType()));
31783178
}
31793179

0 commit comments

Comments
 (0)