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/modernize/LoopConvertUtils.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/modernize/LoopConvertUtils.cpp')
-rw-r--r-- | clang-tools-extra/clang-tidy/modernize/LoopConvertUtils.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang-tools-extra/clang-tidy/modernize/LoopConvertUtils.cpp b/clang-tools-extra/clang-tidy/modernize/LoopConvertUtils.cpp index 90c16bf..93c231b 100644 --- a/clang-tools-extra/clang-tidy/modernize/LoopConvertUtils.cpp +++ b/clang-tools-extra/clang-tidy/modernize/LoopConvertUtils.cpp @@ -18,8 +18,6 @@ #include "llvm/ADT/APSInt.h" #include "llvm/ADT/FoldingSet.h" #include "llvm/ADT/StringRef.h" -#include "llvm/Support/Casting.h" -#include <algorithm> #include <cassert> #include <cstddef> #include <optional> |