From dc5a8a9c4eae1fff820ea3685c16f652e1836a9a Mon Sep 17 00:00:00 2001 From: "Vicente J. Botet Escriba" Date: Sun, 1 Sep 2013 07:25:56 +0000 Subject: [PATCH] Thread: try to handle with not needed definition of uintptr_t #8817. [SVN r85540] --- src/win32/thread.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/win32/thread.cpp b/src/win32/thread.cpp index 28dd8d41..04004a3f 100644 --- a/src/win32/thread.cpp +++ b/src/win32/thread.cpp @@ -22,6 +22,7 @@ #include #include +#include #if defined BOOST_THREAD_USES_DATETIME #include #endif @@ -128,7 +129,7 @@ namespace boost return ret; } - typedef void* uintptr_t; + //typedef void* uintptr_t; inline uintptr_t _beginthreadex(void* security, unsigned stack_size, unsigned (__stdcall* start_address)(void*), void* arglist, unsigned initflag, unsigned* thrdaddr)