chore: Enable clang-tidy misc checks (#6655)

This commit is contained in:
Alex Kremer
2026-03-31 18:29:45 +01:00
committed by GitHub
parent c3fae847f3
commit 2502befb42
469 changed files with 3915 additions and 3965 deletions

View File

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