chore: Enable clang-tidy v21 new checks (#7031)

This commit is contained in:
Alex Kremer
2026-04-29 16:17:35 +01:00
committed by GitHub
parent 46b997b774
commit f7275b7ad9
259 changed files with 2193 additions and 1888 deletions

View File

@@ -304,7 +304,7 @@ private:
rb_.consume(rb_.size());
auto m = std::make_shared<msg>(std::move(jv));
{
std::lock_guard const lock(m_);
std::scoped_lock const lock(m_);
msgs_.push_front(m);
cv_.notify_all();
}
@@ -318,7 +318,7 @@ private:
void
on_read_done()
{
std::lock_guard const lock(m0_);
std::scoped_lock const lock(m0_);
b0_ = true;
cv0_.notify_all();
}