diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2008-08-11 06:23:49 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2008-08-11 06:23:49 +0000 |
| commit | 56fdb6ae69fa3bd8b6878738afb7a371640b45fc (patch) | |
| tree | f843a9d29dadca32a938a8975949486d40398eb1 /clang/lib/Sema/SemaDecl.cpp | |
| parent | 7b7b67872fc105b1b12c0e6e979fea5a158cc132 (diff) | |
| download | bcm5719-llvm-56fdb6ae69fa3bd8b6878738afb7a371640b45fc.tar.gz bcm5719-llvm-56fdb6ae69fa3bd8b6878738afb7a371640b45fc.zip | |
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.
llvm-svn: 54632
Diffstat (limited to 'clang/lib/Sema/SemaDecl.cpp')
| -rw-r--r-- | clang/lib/Sema/SemaDecl.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp index 9a9f1d5ab6d..a0694609190 100644 --- a/clang/lib/Sema/SemaDecl.cpp +++ b/clang/lib/Sema/SemaDecl.cpp @@ -15,26 +15,16 @@ #include "clang/AST/APValue.h" #include "clang/AST/ASTConsumer.h" #include "clang/AST/ASTContext.h" -#include "clang/AST/Attr.h" -#include "clang/AST/Builtins.h" -#include "clang/AST/Decl.h" -#include "clang/AST/DeclCXX.h" #include "clang/AST/DeclObjC.h" -#include "clang/AST/Expr.h" #include "clang/AST/ExprCXX.h" -#include "clang/AST/Type.h" #include "clang/Parse/DeclSpec.h" -#include "clang/Parse/Scope.h" #include "clang/Basic/Diagnostic.h" -#include "clang/Basic/LangOptions.h" #include "clang/Basic/TargetInfo.h" #include "clang/Basic/SourceManager.h" // FIXME: layering (ideally, Sema shouldn't be dependent on Lex API's) #include "clang/Lex/Preprocessor.h" #include "clang/Lex/HeaderSearch.h" -#include "llvm/ADT/SmallString.h" #include "llvm/ADT/SmallSet.h" -#include "llvm/ADT/DenseSet.h" using namespace clang; Sema::TypeTy *Sema::isTypeName(const IdentifierInfo &II, Scope *S) { |

