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

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