fix: merge develop to sponsor (#7753)

This commit is contained in:
Kassaking7
2026-07-07 18:06:10 -04:00
committed by GitHub
parent 9b930d5dea
commit 47043763af
250 changed files with 6342 additions and 6857 deletions

View File

@@ -148,7 +148,7 @@ template <int Bits>
bool
STBitString<Bits>::isEquivalent(STBase const& t) const
{
STBitString const* v = dynamic_cast<STBitString const*>(&t);
auto const* v = dynamic_cast<STBitString const*>(&t);
return v && (value_ == v->value_);
}