This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/base/threaded_container.cpp
Andrew Shkrob 2bbe4f9c93 [base] Code cleanup
Signed-off-by: Andrew Shkrob <andrew.shkrob.social@yandex.by>
2024-04-17 16:40:19 +02:00

8 lines
162 B
C++

#include "base/threaded_container.hpp"
void ThreadedContainer::Cancel()
{
std::unique_lock lock(m_condLock);
Cancellable::Cancel();
m_Cond.notify_all();
}