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/thread_checker.cpp
2016-12-28 15:24:51 +03:00

5 lines
204 B
C++

#include "base/thread_checker.hpp"
ThreadChecker::ThreadChecker() : m_id(std::this_thread::get_id()) {}
bool ThreadChecker::CalledOnOriginalThread() const { return std::this_thread::get_id() == m_id; }