chore: Enable modernize-use-auto (#7707)

This commit is contained in:
Ayaz Salikhov
2026-07-02 21:02:55 +01:00
committed by GitHub
parent 3d847f2a60
commit 7ba1d76d05
50 changed files with 82 additions and 85 deletions

View File

@@ -107,7 +107,7 @@ STIssue::add(Serializer& s) const
bool
STIssue::isEquivalent(STBase const& t) const
{
STIssue const* v = dynamic_cast<STIssue const*>(&t);
auto const* v = dynamic_cast<STIssue const*>(&t);
return (v != nullptr) && (*v == *this);
}