diff options
author | Kazu Hirata <kazu@google.com> | 2025-05-31 15:03:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-31 15:03:56 -0700 |
commit | 2c855e629c9b56830d41fcc81e511e4361323d3b (patch) | |
tree | 01ed566067b47cb64ba348ea93f20762516f6ff4 /clang/lib/Tooling/CompilationDatabase.cpp | |
parent | 52e3b100d4ed695af47cb08e756b30950af52d6a (diff) | |
download | llvm-2c855e629c9b56830d41fcc81e511e4361323d3b.zip llvm-2c855e629c9b56830d41fcc81e511e4361323d3b.tar.gz llvm-2c855e629c9b56830d41fcc81e511e4361323d3b.tar.bz2 |
[Tooling] Remove unused includes (NFC) (#142257)
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/Tooling/CompilationDatabase.cpp')
-rw-r--r-- | clang/lib/Tooling/CompilationDatabase.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/clang/lib/Tooling/CompilationDatabase.cpp b/clang/lib/Tooling/CompilationDatabase.cpp index 09596b9..d5fc216 100644 --- a/clang/lib/Tooling/CompilationDatabase.cpp +++ b/clang/lib/Tooling/CompilationDatabase.cpp @@ -22,19 +22,13 @@ #include "clang/Driver/Action.h" #include "clang/Driver/Compilation.h" #include "clang/Driver/Driver.h" -#include "clang/Driver/DriverDiagnostic.h" #include "clang/Driver/Job.h" #include "clang/Frontend/TextDiagnosticPrinter.h" #include "clang/Tooling/CompilationDatabasePluginRegistry.h" #include "clang/Tooling/Tooling.h" -#include "llvm/ADT/ArrayRef.h" -#include "llvm/ADT/IntrusiveRefCntPtr.h" #include "llvm/ADT/STLExtras.h" -#include "llvm/ADT/SmallString.h" -#include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringRef.h" #include "llvm/Option/Arg.h" -#include "llvm/Support/Casting.h" #include "llvm/Support/Compiler.h" #include "llvm/Support/ErrorOr.h" #include "llvm/Support/LineIterator.h" |