diff options
author | Nico Weber <nicolasweber@gmx.de> | 2015-03-09 02:33:32 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2015-03-09 02:33:32 +0000 |
commit | 620660cfde638f7bf02ce2b786ff35ab5e86d598 (patch) | |
tree | 0c5d86e42fb5cff72b8fa53bd0f8557d34f7d5be /clang/lib | |
parent | b2ddb8ac4d6a20329a484a6763e0662318390eef (diff) | |
download | bcm5719-llvm-620660cfde638f7bf02ce2b786ff35ab5e86d598.tar.gz bcm5719-llvm-620660cfde638f7bf02ce2b786ff35ab5e86d598.zip |
Wrap to 80 columns. No behavior change.
llvm-svn: 231621
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Sema/SemaDecl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp index fda411ddee9..e9b0f5a3fbd 100644 --- a/clang/lib/Sema/SemaDecl.cpp +++ b/clang/lib/Sema/SemaDecl.cpp @@ -10342,9 +10342,9 @@ Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D) { I != E; ++I) { NamedDecl *D = *I; - // Some of these decls (like enums) may have been pinned to the translation unit - // for lack of a real context earlier. If so, remove from the translation unit - // and reattach to the current context. + // Some of these decls (like enums) may have been pinned to the + // translation unit for lack of a real context earlier. If so, remove + // from the translation unit and reattach to the current context. if (D->getLexicalDeclContext() == Context.getTranslationUnitDecl()) { // Is the decl actually in the context? for (const auto *DI : Context.getTranslationUnitDecl()->decls()) { |