refactor: use east const convention (#5409)

This change refactors the codebase to use the "east const convention", and adds a clang-format rule to follow this convention.
This commit is contained in:
Vito Tumas
2025-05-08 13:00:42 +02:00
committed by GitHub
parent 2db2791805
commit 3e152fec74
212 changed files with 812 additions and 795 deletions

View File

@@ -145,9 +145,9 @@ STPathSet::assembleAdd(STPath const& base, STPathElement const& tail)
}
bool
STPathSet::isEquivalent(const STBase& t) const
STPathSet::isEquivalent(STBase const& t) const
{
const STPathSet* v = dynamic_cast<const STPathSet*>(&t);
STPathSet const* v = dynamic_cast<STPathSet const*>(&t);
return v && (value == v->value);
}