[CI] clang-tidy auto fixes (#1190)

This commit is contained in:
github-actions[bot]
2024-02-16 10:21:59 +00:00
committed by GitHub
parent 97a63db51d
commit 9b0dab602f
3 changed files with 4 additions and 5 deletions

View File

@@ -71,7 +71,7 @@ struct BasicScheduledOperation {
void
emplace(auto&& op)
{
std::lock_guard lock{m_};
std::lock_guard const lock{m_};
op_.emplace(std::forward<decltype(op)>(op));
ready_.notify_all();
}