$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r67895 - trunk/boost/thread/win32
From: hartmut.kaiser_at_[hidden]
Date: 2011-01-09 17:21:08
Author: hkaiser
Date: 2011-01-09 17:21:03 EST (Sun, 09 Jan 2011)
New Revision: 67895
URL: http://svn.boost.org/trac/boost/changeset/67895
Log:
Reverted accidental commit, sorry...
Text files modified: 
   trunk/boost/thread/win32/thread_heap_alloc.hpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/thread/win32/thread_heap_alloc.hpp
==============================================================================
--- trunk/boost/thread/win32/thread_heap_alloc.hpp	(original)
+++ trunk/boost/thread/win32/thread_heap_alloc.hpp	2011-01-09 17:21:03 EST (Sun, 09 Jan 2011)
@@ -56,7 +56,7 @@
 {
     namespace detail
     {
-        inline /*BOOST_THREAD_DECL*/ void* allocate_raw_heap_memory(unsigned size)
+        inline BOOST_THREAD_DECL void* allocate_raw_heap_memory(unsigned size)
         {
             void* const heap_memory=detail::win32::HeapAlloc(detail::win32::GetProcessHeap(),0,size);
             if(!heap_memory)
@@ -66,7 +66,7 @@
             return heap_memory;
         }
 
-        inline /*BOOST_THREAD_DECL*/ void free_raw_heap_memory(void* heap_memory)
+        inline BOOST_THREAD_DECL void free_raw_heap_memory(void* heap_memory)
         {
             BOOST_VERIFY(detail::win32::HeapFree(detail::win32::GetProcessHeap(),0,heap_memory)!=0);
         }