Fix overly-long line after r358731.

llvm-svn: 358733
This commit is contained in:
Richard Smith 2019-04-19 02:46:50 +00:00
parent 783d84bb39
commit 96451e3a2c
1 changed files with 2 additions and 2 deletions

View File

@ -603,8 +603,8 @@ static LinkageInfo getExternalLinkageFor(const NamedDecl *D) {
// - A name declared at namespace scope that does not have internal linkage
// by the previous rules and that is introduced by a non-exported
// declaration has module linkage.
if (isInModulePurview(D) &&
!isExportedFromModuleInterfaceUnit(cast<NamedDecl>(D->getCanonicalDecl())))
if (isInModulePurview(D) && !isExportedFromModuleInterfaceUnit(
cast<NamedDecl>(D->getCanonicalDecl())))
return LinkageInfo(ModuleLinkage, DefaultVisibility, false);
return LinkageInfo::external();