[cfe-commits] r69511 - /cfe/trunk/lib/Sema/ParseAST.cpp
Chris Lattner
sabre at nondot.org
Sat Apr 18 22:30:08 PDT 2009
Author: lattner
Date: Sun Apr 19 00:30:08 2009
New Revision: 69511
URL: http://llvm.org/viewvc/llvm-project?rev=69511&view=rev
Log:
rearrange #include order.
Modified:
cfe/trunk/lib/Sema/ParseAST.cpp
Modified: cfe/trunk/lib/Sema/ParseAST.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/ParseAST.cpp?rev=69511&r1=69510&r2=69511&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/ParseAST.cpp (original)
+++ cfe/trunk/lib/Sema/ParseAST.cpp Sun Apr 19 00:30:08 2009
@@ -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;
//===----------------------------------------------------------------------===//
More information about the cfe-commits
mailing list