File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff 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);
Original file line number Diff line number Diff 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 =
You can’t perform that action at this time.
0 commit comments