From: Richard Smith Date: Fri, 19 Apr 2019 02:46:50 +0000 (+0000) Subject: Fix overly-long line after r358731. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d87ee8e678f5baff94542c9c8eaa65071b8dcd33;p=clang Fix overly-long line after r358731. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@358733 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/Decl.cpp b/lib/AST/Decl.cpp index 357d06c612..e8201fc4ea 100644 --- a/lib/AST/Decl.cpp +++ b/lib/AST/Decl.cpp @@ -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(D->getCanonicalDecl()))) + if (isInModulePurview(D) && !isExportedFromModuleInterfaceUnit( + cast(D->getCanonicalDecl()))) return LinkageInfo(ModuleLinkage, DefaultVisibility, false); return LinkageInfo::external();