refactor: Enable clang-tidy readability-identifier-naming check (#6571)

This commit is contained in:
Alex Kremer
2026-05-03 11:31:53 +01:00
committed by GitHub
parent 182d844996
commit 8995564ed6
1498 changed files with 58858 additions and 58914 deletions

View File

@@ -27,10 +27,10 @@ STVector256::STVector256(SerialIter& sit, SField const& name) : STBase(name)
auto const cnt = slice.size() / uint256::size();
mValue.reserve(cnt);
value_.reserve(cnt);
for (std::size_t i = 0; i != cnt; ++i)
mValue.emplace_back(slice.substr(i * uint256::size(), uint256::size()));
value_.emplace_back(slice.substr(i * uint256::size(), uint256::size()));
}
STBase*
@@ -54,7 +54,7 @@ STVector256::getSType() const
bool
STVector256::isDefault() const
{
return mValue.empty();
return value_.empty();
}
void
@@ -62,22 +62,22 @@ STVector256::add(Serializer& s) const
{
XRPL_ASSERT(getFName().isBinary(), "xrpl::STVector256::add : field is binary");
XRPL_ASSERT(getFName().fieldType == STI_VECTOR256, "xrpl::STVector256::add : valid field type");
s.addVL(mValue.begin(), mValue.end(), mValue.size() * (256 / 8));
s.addVL(value_.begin(), value_.end(), value_.size() * (256 / 8));
}
bool
STVector256::isEquivalent(STBase const& t) const
{
STVector256 const* v = dynamic_cast<STVector256 const*>(&t);
return (v != nullptr) && (mValue == v->mValue);
return (v != nullptr) && (value_ == v->value_);
}
Json::Value
json::Value
STVector256::getJson(JsonOptions) const
{
Json::Value ret(Json::arrayValue);
json::Value ret(json::ArrayValue);
for (auto const& vEntry : mValue)
for (auto const& vEntry : value_)
ret.append(to_string(vEntry));
return ret;