forked from organicmaps/organicmaps
Added std headers for condition and mutex
This commit is contained in:
parent
0ddcff0b07
commit
0adf799b3e
2 changed files with 28 additions and 0 deletions
14
std/condition_variable.hpp
Normal file
14
std/condition_variable.hpp
Normal file
|
@ -0,0 +1,14 @@
|
|||
#pragma once
|
||||
#include "common_defines.hpp"
|
||||
|
||||
#ifdef new
|
||||
#undef new
|
||||
#endif
|
||||
|
||||
#include <condition_variable>
|
||||
|
||||
using std::condition_variable;
|
||||
|
||||
#ifdef DEBUG_NEW
|
||||
#define new DEBUG_NEW
|
||||
#endif
|
14
std/mutex.hpp
Normal file
14
std/mutex.hpp
Normal file
|
@ -0,0 +1,14 @@
|
|||
#pragma once
|
||||
#include "common_defines.hpp"
|
||||
|
||||
#ifdef new
|
||||
#undef new
|
||||
#endif
|
||||
|
||||
#include <mutex>
|
||||
|
||||
using std::mutex;
|
||||
|
||||
#ifdef DEBUG_NEW
|
||||
#define new DEBUG_NEW
|
||||
#endif
|
Loading…
Add table
Reference in a new issue