diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-19 05:30:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-19 05:30:08 +0000 |
commit | 498603d6ea8a534ce7af3dfdcc0fa2c42d016025 (patch) | |
tree | 07001c5f4f4accfaa09a605f0de6d6b285d0bdf3 /lib/Sema/ParseAST.cpp | |
parent | 17a783055a41a44fda76b1747ebe6fd8ac2ba00a (diff) |
rearrange #include order.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69511 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/ParseAST.cpp')
-rw-r--r-- | lib/Sema/ParseAST.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Sema/ParseAST.cpp b/lib/Sema/ParseAST.cpp index d237f7539e..b27734745a 100644 --- a/lib/Sema/ParseAST.cpp +++ b/lib/Sema/ParseAST.cpp @@ -11,13 +11,13 @@ // //===----------------------------------------------------------------------===// -#include <llvm/ADT/OwningPtr.h> #include "clang/Sema/ParseAST.h" +#include "Sema.h" #include "clang/AST/ASTConsumer.h" #include "clang/AST/ExternalASTSource.h" #include "clang/AST/Stmt.h" -#include "Sema.h" #include "clang/Parse/Parser.h" +#include "llvm/ADT/OwningPtr.h" using namespace clang; //===----------------------------------------------------------------------===// |