style: Set clang-format width 100 (#2953)

This commit is contained in:
Ayaz Salikhov
2026-02-20 15:56:03 +00:00
committed by GitHub
parent 480264ff8f
commit 6ba58f42f0
575 changed files with 14315 additions and 6552 deletions

View File

@@ -32,7 +32,10 @@
namespace util {
Coroutine::Coroutine(boost::asio::yield_context&& yield, std::shared_ptr<FamilyCancellationSignal> signal)
Coroutine::Coroutine(
boost::asio::yield_context&& yield,
std::shared_ptr<FamilyCancellationSignal> signal
)
: yield_(std::move(yield))
, cyield_(boost::asio::bind_cancellation_slot(cancellationSignal_.slot(), yield_[error_]))
, familySignal_{std::move(signal)}