Wrap to 80 columns. No behavior change.
authorNico Weber <nicolasweber@gmx.de>
Mon, 9 Mar 2015 02:33:32 +0000 (02:33 +0000)
committerNico Weber <nicolasweber@gmx.de>
Mon, 9 Mar 2015 02:33:32 +0000 (02:33 +0000)
llvm-svn: 231621

clang/lib/Sema/SemaDecl.cpp

index fda411d..e9b0f5a 100644 (file)
@@ -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()) {