aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/StaticAnalyzer/Checkers
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2025-06-15 21:00:36 -0700
committerGitHub <noreply@github.com>2025-06-15 21:00:36 -0700
commitc01532177ff61a768d5dc1ea541f9a8d986497fa (patch)
tree1fc9fa1a9db1b89423a59ab079192f6f41e97093 /clang/lib/StaticAnalyzer/Checkers
parent7a4a83b551eaf159ce10b612def3be62d80706d4 (diff)
downloadllvm-c01532177ff61a768d5dc1ea541f9a8d986497fa.zip
llvm-c01532177ff61a768d5dc1ea541f9a8d986497fa.tar.gz
llvm-c01532177ff61a768d5dc1ea541f9a8d986497fa.tar.bz2
[clang] Remove unused includes (NFC) (#144285)
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/StaticAnalyzer/Checkers')
-rw-r--r--clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
index a00a09f..62bc321 100644
--- a/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
+++ b/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
@@ -12,7 +12,6 @@
//===----------------------------------------------------------------------===//
#include "RetainCountChecker.h"
-#include "clang/StaticAnalyzer/Core/Checker.h"
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
#include <optional>