r231621 - Wrap to 80 columns. No behavior change.

Nico Weber nicolasweber at gmx.de
Sun Mar 8 19:33:32 PDT 2015


Author: nico
Date: Sun Mar  8 21:33:32 2015
New Revision: 231621

URL: http://llvm.org/viewvc/llvm-project?rev=231621&view=rev
Log:
Wrap to 80 columns. No behavior change.

Modified:
    cfe/trunk/lib/Sema/SemaDecl.cpp

Modified: cfe/trunk/lib/Sema/SemaDecl.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaDecl.cpp?rev=231621&r1=231620&r2=231621&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaDecl.cpp (original)
+++ cfe/trunk/lib/Sema/SemaDecl.cpp Sun Mar  8 21:33:32 2015
@@ -10342,9 +10342,9 @@ Decl *Sema::ActOnStartOfFunctionDef(Scop
          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()) {





More information about the cfe-commits mailing list