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

@@ -17,9 +17,7 @@ ValueIteratorBase::ValueIteratorBase() : current_(), isNull_(true)
{
}
ValueIteratorBase::ValueIteratorBase(
Value::ObjectValues::iterator const& current)
: current_(current), isNull_(false)
ValueIteratorBase::ValueIteratorBase(Value::ObjectValues::iterator const& current) : current_(current), isNull_(false)
{
}
@@ -60,8 +58,7 @@ ValueIteratorBase::computeDistance(SelfType const& other) const
// return difference_type( std::distance( current_, other.current_ ) );
difference_type myDistance = 0;
for (Value::ObjectValues::iterator it = current_; it != other.current_;
++it)
for (Value::ObjectValues::iterator it = current_; it != other.current_; ++it)
{
++myDistance;
}
@@ -128,9 +125,7 @@ ValueIteratorBase::memberName() const
// //////////////////////////////////////////////////////////////////
// //////////////////////////////////////////////////////////////////
ValueConstIterator::ValueConstIterator(
Value::ObjectValues::iterator const& current)
: ValueIteratorBase(current)
ValueConstIterator::ValueConstIterator(Value::ObjectValues::iterator const& current) : ValueIteratorBase(current)
{
}
@@ -149,18 +144,15 @@ ValueConstIterator::operator=(ValueIteratorBase const& other)
// //////////////////////////////////////////////////////////////////
// //////////////////////////////////////////////////////////////////
ValueIterator::ValueIterator(Value::ObjectValues::iterator const& current)
: ValueIteratorBase(current)
ValueIterator::ValueIterator(Value::ObjectValues::iterator const& current) : ValueIteratorBase(current)
{
}
ValueIterator::ValueIterator(ValueConstIterator const& other)
: ValueIteratorBase(other)
ValueIterator::ValueIterator(ValueConstIterator const& other) : ValueIteratorBase(other)
{
}
ValueIterator::ValueIterator(ValueIterator const& other)
: ValueIteratorBase(other)
ValueIterator::ValueIterator(ValueIterator const& other) : ValueIteratorBase(other)
{
}