chore: Set ColumnLimit to 120 in clang-format (#6288)

This change updates the ColumnLimit from 80 to 120, and applies clang-format to reformat the code.
This commit is contained in:
Ayaz Salikhov
2026-01-28 18:09:50 +00:00
committed by GitHub
parent 92046785d1
commit 5f638f5553
1016 changed files with 26918 additions and 66660 deletions

View File

@@ -27,11 +27,7 @@ trust(Account const& account, STAmount const& amount, std::uint32_t flags)
// authorises peer (third function parameter) to hold a certain currency
// (amount, the second function parameter)
Json::Value
trust(
Account const& account,
STAmount const& amount,
Account const& peer,
std::uint32_t flags)
trust(Account const& account, STAmount const& amount, Account const& peer, std::uint32_t flags)
{
if (isXRP(amount))
Throw<std::runtime_error>("trust() requires IOU");
@@ -47,10 +43,7 @@ trust(
}
Json::Value
claw(
Account const& account,
STAmount const& amount,
std::optional<Account> const& mptHolder)
claw(Account const& account, STAmount const& amount, std::optional<Account> const& mptHolder)
{
Json::Value jv;
jv[jss::Account] = account.human();