Revert "fix: merge develop to sponsor (#7753)" (#7759)

This commit is contained in:
yinyiqian1
2026-07-08 11:15:04 -04:00
committed by GitHub
parent a5cced5d39
commit 6d8e7f45c5
250 changed files with 6855 additions and 6340 deletions

View File

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