blob: c5a7cb37800592fd9c82d4194c36fec92989e54d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#ifndef NDEBUG
#include <thread>
#define MBGL_STORE_THREAD(tid) const std::thread::id tid = std::this_thread::get_id();
#define MBGL_VERIFY_THREAD(tid) assert(tid == std::this_thread::get_id());
#else
#define MBGL_STORE_THREAD(tid)
#define MBGL_VERIFY_THREAD(tid)
#endif
|