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

@@ -11,10 +11,10 @@
namespace xrpl::test::jtx {
Json::Value
json::Value
fset(Account const& account, std::uint32_t on, std::uint32_t off)
{
Json::Value jv;
json::Value jv;
jv[jss::Account] = account.human();
jv[jss::TransactionType] = jss::AccountSet;
if (on != 0)
@@ -25,7 +25,7 @@ fset(Account const& account, std::uint32_t on, std::uint32_t off)
}
void
flags::operator()(Env& env) const
Flags::operator()(Env& env) const
{
auto const sle = env.le(account_);
if (!sle)
@@ -43,7 +43,7 @@ flags::operator()(Env& env) const
}
void
nflags::operator()(Env& env) const
Nflags::operator()(Env& env) const
{
auto const sle = env.le(account_);
if (!sle)