forked from organicmaps/organicmaps
[windows,mingw]: Fixed compilation.
This commit is contained in:
parent
8bfa363f42
commit
9fed77e8de
2 changed files with 5 additions and 1 deletions
|
@ -182,7 +182,7 @@ namespace threads
|
|||
#ifdef OMIM_OS_WINDOWS
|
||||
return ::GetCurrentThreadId();
|
||||
#else
|
||||
return static_cast<void *>(pthread_self());
|
||||
return reinterpret_cast<void *>(pthread_self());
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,6 +4,10 @@
|
|||
|
||||
#include "../std/stdint.hpp"
|
||||
|
||||
#ifdef OMIM_OS_WINDOWS
|
||||
#include "../std/windows.hpp" // for DWORD
|
||||
#endif
|
||||
|
||||
namespace threads
|
||||
{
|
||||
class IRoutine
|
||||
|
|
Loading…
Add table
Reference in a new issue