aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra/clang-tidy/modernize/UseStdFormatCheck.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2025-05-25 10:55:36 -0700
committerGitHub <noreply@github.com>2025-05-25 10:55:36 -0700
commitba007a60d07fb4ac685c8bca7b7a18b870e287b2 (patch)
treeedb637a3a437a3f56bdf96cd5bccb8d62074e4c2 /clang-tools-extra/clang-tidy/modernize/UseStdFormatCheck.cpp
parent12af64d0d7dedfcee6da3c458edda64884e8f3bb (diff)
downloadllvm-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/UseStdFormatCheck.cpp')
-rw-r--r--clang-tools-extra/clang-tidy/modernize/UseStdFormatCheck.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/clang-tools-extra/clang-tidy/modernize/UseStdFormatCheck.cpp b/clang-tools-extra/clang-tidy/modernize/UseStdFormatCheck.cpp
index f97b844c..cf2fa19 100644
--- a/clang-tools-extra/clang-tidy/modernize/UseStdFormatCheck.cpp
+++ b/clang-tools-extra/clang-tidy/modernize/UseStdFormatCheck.cpp
@@ -12,7 +12,6 @@
#include "../utils/OptionsUtils.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/Lex/Lexer.h"
-#include "clang/Tooling/FixIt.h"
using namespace clang::ast_matchers;