diff options
author | Mehdi Amini <mehdi.amini@apple.com> | 2016-07-18 19:02:11 +0000 |
---|---|---|
committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-07-18 19:02:11 +0000 |
commit | 9670f847b8c5f6eb42c3df74035809f95465b5fb (patch) | |
tree | c6aba23799aaf9725ff3163d1d2f39266d4fa4d0 /clang/lib/Lex/PPDirectives.cpp | |
parent | 210b7cf3e2592cd3c2ea227a9ee5ebd4a72e3ed5 (diff) | |
download | bcm5719-llvm-9670f847b8c5f6eb42c3df74035809f95465b5fb.tar.gz bcm5719-llvm-9670f847b8c5f6eb42c3df74035809f95465b5fb.zip |
[NFC] Header cleanup
Summary: Removed unused headers, replaced some headers with forward class declarations
Patch by: Eugene <claprix@yandex.ru>
Differential Revision: https://reviews.llvm.org/D20100
llvm-svn: 275882
Diffstat (limited to 'clang/lib/Lex/PPDirectives.cpp')
-rw-r--r-- | clang/lib/Lex/PPDirectives.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/Lex/PPDirectives.cpp b/clang/lib/Lex/PPDirectives.cpp index 77f118fd3cc..3f94d21c0f5 100644 --- a/clang/lib/Lex/PPDirectives.cpp +++ b/clang/lib/Lex/PPDirectives.cpp @@ -12,7 +12,6 @@ /// //===----------------------------------------------------------------------===// -#include "clang/Lex/Preprocessor.h" #include "clang/Basic/FileManager.h" #include "clang/Basic/SourceManager.h" #include "clang/Lex/CodeCompletionHandler.h" @@ -23,7 +22,7 @@ #include "clang/Lex/MacroInfo.h" #include "clang/Lex/ModuleLoader.h" #include "clang/Lex/Pragma.h" -#include "llvm/ADT/APInt.h" +#include "clang/Lex/Preprocessor.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/StringExtras.h" #include "llvm/ADT/StringSwitch.h" |