From 9aac94ff6f488a889d4a9ea954062c5c575da4bb Mon Sep 17 00:00:00 2001 From: Valery Mironov <32071355+MBkkt@users.noreply.github.com> Date: Tue, 31 Oct 2023 13:00:17 +0100 Subject: [PATCH] Update core/utils/async_utils.cpp --- core/utils/async_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/utils/async_utils.cpp b/core/utils/async_utils.cpp index dbc080ddd..60086a44f 100644 --- a/core/utils/async_utils.cpp +++ b/core/utils/async_utils.cpp @@ -78,7 +78,7 @@ bool ThreadPool::run(Func&& fn, Clock::duration delay) { return false; } tasks_.emplace(std::move(fn), at); - // TODO We can don't notify when new element is more delayed than min + // TODO We can skip notify when new element is more delayed than min } else { std::unique_lock lock{m_}; if (WasStop()) {