From 84e403f1c4f7670e6e7e2a43144263206140143d Mon Sep 17 00:00:00 2001 From: "Evgeniy A. Dushistov" Date: Mon, 3 May 2021 00:12:48 +0300 Subject: [PATCH] [base] remove dead code from threaded_list Signed-off-by: Evgeniy A. Dushistov --- base/threaded_list.hpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/base/threaded_list.hpp b/base/threaded_list.hpp index 326dc2fa7d..82f08cb22e 100644 --- a/base/threaded_list.hpp +++ b/base/threaded_list.hpp @@ -16,23 +16,15 @@ private: bool WaitNonEmpty(std::unique_lock &lock) { - bool doFirstWait = true; - while ((m_isEmpty = m_list.empty())) { if (IsCancelled()) break; - if (doFirstWait) - doFirstWait = false; - m_Cond.wait(lock); } - if (IsCancelled()) - return true; - - return false; + return IsCancelled(); } public: