aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/ParseAST.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2008-08-11 06:23:49 +0000
committerDaniel Dunbar <daniel@zuster.org>2008-08-11 06:23:49 +0000
commitacc5f3e42334525bf28c86471551f83dfce222d5 (patch)
treeb8fd5ed45f62c05e780454142381272501603342 /lib/Sema/ParseAST.cpp
parentc4a1dea2dc56bd1357ec91b829a0b9e68229a13e (diff)
More #include cleaning
- Kill unnecessary #includes in .cpp files. This is an automatic sweep so some things removed are actually used, but happen to be included by a previous header. I tried to get rid of the obvious examples and this was the easiest way to trim the #includes in one fell swoop. - We now return to regularly scheduled development. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54632 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/ParseAST.cpp')
-rw-r--r--lib/Sema/ParseAST.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Sema/ParseAST.cpp b/lib/Sema/ParseAST.cpp
index 603cea0e5c..4bd70a8fa5 100644
--- a/lib/Sema/ParseAST.cpp
+++ b/lib/Sema/ParseAST.cpp
@@ -12,13 +12,10 @@
//===----------------------------------------------------------------------===//
#include "clang/Sema/ParseAST.h"
-#include "clang/AST/ASTContext.h"
#include "clang/AST/ASTConsumer.h"
-#include "clang/AST/DeclObjC.h"
#include "clang/AST/Stmt.h"
#include "clang/AST/TranslationUnit.h"
#include "Sema.h"
-#include "clang/Parse/Action.h"
#include "clang/Parse/Parser.h"
using namespace clang;