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

@@ -101,9 +101,7 @@ STBase::add(Serializer& s) const
bool
STBase::isEquivalent(STBase const& t) const
{
XRPL_ASSERT(
getSType() == STI_NOTPRESENT,
"xrpl::STBase::isEquivalent : type not present");
XRPL_ASSERT(getSType() == STI_NOTPRESENT, "xrpl::STBase::isEquivalent : type not present");
return t.getSType() == STI_NOTPRESENT;
}
@@ -129,8 +127,7 @@ STBase::getFName() const
void
STBase::addFieldID(Serializer& s) const
{
XRPL_ASSERT(
fName->isBinary(), "xrpl::STBase::addFieldID : field is binary");
XRPL_ASSERT(fName->isBinary(), "xrpl::STBase::addFieldID : field is binary");
s.addFieldID(fName->fieldType, fName->fieldValue);
}