Skip to content

Commit 92f3297

Browse files
vbvictorvinay-deshmukh
authored andcommitted
[clang-tidy][NFC] Run clang-format-22 over clang-tidy (llvm#167122)
1 parent b1cf435 commit 92f3297

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

clang-tools-extra/clang-tidy/ClangTidy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ ClangTidyASTConsumerFactory::ClangTidyASTConsumerFactory(
356356
if (Context.canExperimentalCustomChecks() && custom::RegisterCustomChecks)
357357
custom::RegisterCustomChecks(Context.getOptions(), *CheckFactories);
358358
#endif
359-
for (ClangTidyModuleRegistry::entry const E :
359+
for (const ClangTidyModuleRegistry::entry E :
360360
ClangTidyModuleRegistry::entries()) {
361361
std::unique_ptr<ClangTidyModule> Module = E.instantiate();
362362
Module->addCheckFactories(*CheckFactories);

clang-tools-extra/clang-tidy/readability/QualifiedAutoCheck.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ void QualifiedAutoCheck::registerMatchers(MatchFinder *Finder) {
146146
return qualType(anyOf(qualType(pointerType(pointee(InnerMatchers...))),
147147
qualType(substTemplateTypeParmType(hasReplacementType(
148148
pointerType(pointee(InnerMatchers...)))))));
149-
150149
};
151150

152151
auto IsAutoDeducedToPointer =

0 commit comments

Comments
 (0)