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/Lex/Pragma.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/Lex/Pragma.cpp')
-rw-r--r-- | clang/lib/Lex/Pragma.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/Lex/Pragma.cpp b/clang/lib/Lex/Pragma.cpp index 08ad1cf1d2f..e6955d762fa 100644 --- a/clang/lib/Lex/Pragma.cpp +++ b/clang/lib/Lex/Pragma.cpp @@ -13,13 +13,11 @@ //===----------------------------------------------------------------------===// #include "clang/Lex/Pragma.h" -#include "clang/Lex/PPCallbacks.h" #include "clang/Lex/HeaderSearch.h" #include "clang/Lex/Preprocessor.h" #include "clang/Basic/Diagnostic.h" #include "clang/Basic/FileManager.h" #include "clang/Basic/SourceManager.h" -#include "llvm/ADT/SmallVector.h" using namespace clang; // Out-of-line destructor to provide a home for the class. |