diff options
author | Kazu Hirata <kazu@google.com> | 2025-05-25 10:55:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-25 10:55:36 -0700 |
commit | ba007a60d07fb4ac685c8bca7b7a18b870e287b2 (patch) | |
tree | edb637a3a437a3f56bdf96cd5bccb8d62074e4c2 /clang-tools-extra/clang-tidy/android/CloexecSocketCheck.cpp | |
parent | 12af64d0d7dedfcee6da3c458edda64884e8f3bb (diff) | |
download | llvm-ba007a60d07fb4ac685c8bca7b7a18b870e287b2.zip llvm-ba007a60d07fb4ac685c8bca7b7a18b870e287b2.tar.gz llvm-ba007a60d07fb4ac685c8bca7b7a18b870e287b2.tar.bz2 |
[clang-tidy] Remove unused includes (NFC) (#141420)
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-tools-extra/clang-tidy/android/CloexecSocketCheck.cpp')
-rw-r--r-- | clang-tools-extra/clang-tidy/android/CloexecSocketCheck.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang-tools-extra/clang-tidy/android/CloexecSocketCheck.cpp b/clang-tools-extra/clang-tidy/android/CloexecSocketCheck.cpp index 9e2e6ca..65c6a820 100644 --- a/clang-tools-extra/clang-tidy/android/CloexecSocketCheck.cpp +++ b/clang-tools-extra/clang-tidy/android/CloexecSocketCheck.cpp @@ -7,7 +7,6 @@ //===----------------------------------------------------------------------===// #include "CloexecSocketCheck.h" -#include "clang/AST/ASTContext.h" #include "clang/ASTMatchers/ASTMatchFinder.h" using namespace clang::ast_matchers; |