From: Chris Lattner Date: Thu, 12 Jul 2007 15:43:07 +0000 (+0000) Subject: Fix "no newline at end of file" warnings. Patch contributed by X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6fa5f0943a84233b2e1ec9716eae55643225bfd4;p=clang Fix "no newline at end of file" warnings. Patch contributed by Benoit Boissinot! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39780 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/AST/Decl.cpp b/AST/Decl.cpp index 22fbabbd30..f4a346ff97 100644 --- a/AST/Decl.cpp +++ b/AST/Decl.cpp @@ -158,4 +158,4 @@ FieldDecl* RecordDecl::getMember(IdentifierInfo *name) { return Members[i]; } return 0; -} \ No newline at end of file +} diff --git a/CodeGen/CGStmt.cpp b/CodeGen/CGStmt.cpp index fb2f7841f2..193acb716a 100644 --- a/CodeGen/CGStmt.cpp +++ b/CodeGen/CGStmt.cpp @@ -281,4 +281,4 @@ void CodeGenFunction::EmitReturnStmt(const ReturnStmt &S) { void CodeGenFunction::EmitDeclStmt(const DeclStmt &S) { for (const Decl *Decl = S.getDecl(); Decl; Decl = Decl->getNextDeclarator()) EmitDecl(*Decl); -} \ No newline at end of file +} diff --git a/include/clang/Lex/LiteralSupport.h b/include/clang/Lex/LiteralSupport.h index adeac18af8..f114dbbb78 100644 --- a/include/clang/Lex/LiteralSupport.h +++ b/include/clang/Lex/LiteralSupport.h @@ -153,4 +153,4 @@ public: } // end namespace clang -#endif \ No newline at end of file +#endif