diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2019-04-19 02:46:50 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2019-04-19 02:46:50 +0000 |
commit | 96451e3a2cab2d92159941866f786eac7414a493 (patch) | |
tree | ef50b64a3a45743e81ae11d612e7f08d48e040da /clang/lib/AST/Decl.cpp | |
parent | 783d84bb395ce2549a14ff96db4df5ac3a513d97 (diff) | |
download | bcm5719-llvm-96451e3a2cab2d92159941866f786eac7414a493.tar.gz bcm5719-llvm-96451e3a2cab2d92159941866f786eac7414a493.zip |
Fix overly-long line after r358731.
llvm-svn: 358733
Diffstat (limited to 'clang/lib/AST/Decl.cpp')
-rw-r--r-- | clang/lib/AST/Decl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/AST/Decl.cpp b/clang/lib/AST/Decl.cpp index 357d06c6128..e8201fc4ea2 100644 --- a/clang/lib/AST/Decl.cpp +++ b/clang/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<NamedDecl>(D->getCanonicalDecl()))) + if (isInModulePurview(D) && !isExportedFromModuleInterfaceUnit( + cast<NamedDecl>(D->getCanonicalDecl()))) return LinkageInfo(ModuleLinkage, DefaultVisibility, false); return LinkageInfo::external(); |