diff options
author | Kazu Hirata <kazu@google.com> | 2025-05-26 14:57:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-26 14:57:09 -0700 |
commit | fe2b921c42349c52c87dc1a4eb79e2452b79e587 (patch) | |
tree | 8b51a6f1bda3784652c5b0de701095d341845f01 /clang/lib/Parse/ParseInit.cpp | |
parent | 36d57677bbbcc4f32e7aa16b73ca22fcae13a3aa (diff) | |
download | llvm-fe2b921c42349c52c87dc1a4eb79e2452b79e587.zip llvm-fe2b921c42349c52c87dc1a4eb79e2452b79e587.tar.gz llvm-fe2b921c42349c52c87dc1a4eb79e2452b79e587.tar.bz2 |
[Parse] Remove unused includes (NFC) (#141524)
These are identified by misc-include-cleaner. I've filtered out those
that break builds. Also, I'm staying away from llvm-config.h,
config.h, and Compiler.h, which likely cause platform- or
compiler-specific build failures.
Diffstat (limited to 'clang/lib/Parse/ParseInit.cpp')
-rw-r--r-- | clang/lib/Parse/ParseInit.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/Parse/ParseInit.cpp b/clang/lib/Parse/ParseInit.cpp index af32b5d..df8372b 100644 --- a/clang/lib/Parse/ParseInit.cpp +++ b/clang/lib/Parse/ParseInit.cpp @@ -20,8 +20,6 @@ #include "clang/Sema/Scope.h" #include "clang/Sema/SemaCodeCompletion.h" #include "clang/Sema/SemaObjC.h" -#include "llvm/ADT/STLExtras.h" -#include "llvm/ADT/SmallString.h" using namespace clang; bool Parser::MayBeDesignationStart() { |