$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r85621 - branches/release/libs/thread/src/win32
From: vicente.botet_at_[hidden]
Date: 2013-09-09 12:57:32
Author: viboes
Date: 2013-09-09 12:57:32 EDT (Mon, 09 Sep 2013)
New Revision: 85621
URL: http://svn.boost.org/trac/boost/changeset/85621
Log:
Thread: fix #8417.
Text files modified: 
   branches/release/libs/thread/src/win32/thread.cpp |     3 ++-                                     
   1 files changed, 2 insertions(+), 1 deletions(-)
Modified: branches/release/libs/thread/src/win32/thread.cpp
==============================================================================
--- branches/release/libs/thread/src/win32/thread.cpp	Mon Sep  9 12:16:31 2013	(r85620)
+++ branches/release/libs/thread/src/win32/thread.cpp	2013-09-09 12:57:32 EDT (Mon, 09 Sep 2013)	(r85621)
@@ -22,6 +22,7 @@
 #include <boost/thread/future.hpp>
 
 #include <boost/assert.hpp>
+#include <boost/cstdint.hpp>
 #if defined BOOST_THREAD_USES_DATETIME
 #include <boost/date_time/posix_time/conversion.hpp>
 #endif
@@ -128,7 +129,7 @@
             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)