[cfe-commits] r39780 - in /cfe/trunk: AST/Decl.cpp CodeGen/CGStmt.cpp include/clang/Lex/LiteralSupport.h

Chris Lattner sabre at nondot.org
Thu Jul 12 08:43:08 PDT 2007


Author: lattner
Date: Thu Jul 12 10:43:07 2007
New Revision: 39780

URL: http://llvm.org/viewvc/llvm-project?rev=39780&view=rev
Log:
Fix "no newline at end of file" warnings.  Patch contributed by
Benoit Boissinot!


Modified:
    cfe/trunk/AST/Decl.cpp
    cfe/trunk/CodeGen/CGStmt.cpp
    cfe/trunk/include/clang/Lex/LiteralSupport.h

Modified: cfe/trunk/AST/Decl.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/AST/Decl.cpp?rev=39780&r1=39779&r2=39780&view=diff

==============================================================================
--- cfe/trunk/AST/Decl.cpp (original)
+++ cfe/trunk/AST/Decl.cpp Thu Jul 12 10:43:07 2007
@@ -158,4 +158,4 @@
       return Members[i];
   }
   return 0;
-}
\ No newline at end of file
+}

Modified: cfe/trunk/CodeGen/CGStmt.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/CodeGen/CGStmt.cpp?rev=39780&r1=39779&r2=39780&view=diff

==============================================================================
--- cfe/trunk/CodeGen/CGStmt.cpp (original)
+++ cfe/trunk/CodeGen/CGStmt.cpp Thu Jul 12 10:43:07 2007
@@ -281,4 +281,4 @@
 void CodeGenFunction::EmitDeclStmt(const DeclStmt &S) {
   for (const Decl *Decl = S.getDecl(); Decl; Decl = Decl->getNextDeclarator())
     EmitDecl(*Decl);
-}
\ No newline at end of file
+}

Modified: cfe/trunk/include/clang/Lex/LiteralSupport.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Lex/LiteralSupport.h?rev=39780&r1=39779&r2=39780&view=diff

==============================================================================
--- cfe/trunk/include/clang/Lex/LiteralSupport.h (original)
+++ cfe/trunk/include/clang/Lex/LiteralSupport.h Thu Jul 12 10:43:07 2007
@@ -153,4 +153,4 @@
   
 }  // end namespace clang
 
-#endif
\ No newline at end of file
+#endif





More information about the cfe-commits mailing list