diff options
author | Nico Weber <nicolasweber@gmx.de> | 2015-02-15 06:15:40 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2015-02-15 06:15:40 +0000 |
commit | 01a46adada9ac7a9b8e97651bd4b15f065b5f7ed (patch) | |
tree | 4c7909a9c351f264ab6be7c8b65d0f9dbe41af06 /clang/lib/Sema/SemaDecl.cpp | |
parent | d36bd7005987fe6677e2f54341ada8c45c752d8f (diff) | |
download | bcm5719-llvm-01a46adada9ac7a9b8e97651bd4b15f065b5f7ed.tar.gz bcm5719-llvm-01a46adada9ac7a9b8e97651bd4b15f065b5f7ed.zip |
Wrap to 80 columns. No behavior change.
llvm-svn: 229282
Diffstat (limited to 'clang/lib/Sema/SemaDecl.cpp')
-rw-r--r-- | clang/lib/Sema/SemaDecl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp index 7aaaf53cac9..d3604925028 100644 --- a/clang/lib/Sema/SemaDecl.cpp +++ b/clang/lib/Sema/SemaDecl.cpp @@ -3499,7 +3499,8 @@ Decl *Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DS.getStorageClassSpec() != DeclSpec::SCS_typedef) { if (getLangOpts().CPlusPlus || Record->getDeclContext()->isRecord()) - return BuildAnonymousStructOrUnion(S, DS, AS, Record, Context.getPrintingPolicy()); + return BuildAnonymousStructOrUnion(S, DS, AS, Record, + Context.getPrintingPolicy()); DeclaresAnything = false; } |