[windows,mingw]: Fixed compilation.

This commit is contained in:
Alexander Gusak 2011-07-31 17:37:33 +03:00 committed by Alex Zolotarev
parent 8bfa363f42
commit 9fed77e8de
2 changed files with 5 additions and 1 deletions

View file

@ -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
}
}

View file

@ -4,6 +4,10 @@
#include "../std/stdint.hpp"
#ifdef OMIM_OS_WINDOWS
#include "../std/windows.hpp" // for DWORD
#endif
namespace threads
{
class IRoutine