mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
25 lines
255 B
C++
25 lines
255 B
C++
#ifndef __TRACYMUTEX_HPP__
|
|
#define __TRACYMUTEX_HPP__
|
|
|
|
#if defined _MSC_VER
|
|
|
|
# include <shared_mutex>
|
|
|
|
namespace tracy
|
|
{
|
|
using TracyMutex = std::shared_mutex;
|
|
}
|
|
|
|
#else
|
|
|
|
#include <mutex>
|
|
|
|
namespace tracy
|
|
{
|
|
using TracyMutex = std::mutex;
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|