Fixed an 80-column violation.

Thanks to Nico Weber for spotting this.

llvm-svn: 223966
This commit is contained in:
Sean Callanan 2014-12-10 21:22:20 +00:00
parent 7b00d8f979
commit b12a855ba8
1 changed files with 7 additions and 6 deletions

View File

@ -3480,12 +3480,13 @@ Decl *ASTNodeImporter::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
bool HasBraces = D->hasBraces();
LinkageSpecDecl *ToLinkageSpec = LinkageSpecDecl::Create(Importer.getToContext(),
DC,
ExternLoc,
LangLoc,
D->getLanguage(),
HasBraces);
LinkageSpecDecl *ToLinkageSpec =
LinkageSpecDecl::Create(Importer.getToContext(),
DC,
ExternLoc,
LangLoc,
D->getLanguage(),
HasBraces);
if (HasBraces) {
SourceLocation RBraceLoc = Importer.Import(D->getRBraceLoc());