diff options
-rw-r--r-- | AST/Decl.cpp | 2 | ||||
-rw-r--r-- | CodeGen/CGStmt.cpp | 2 | ||||
-rw-r--r-- | include/clang/Lex/LiteralSupport.h | 2 |
3 files changed, 3 insertions, 3 deletions
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 |