Ticket #4315: 4315.patch

File 4315.patch, 851 bytes (added by viboes, 12 years ago)
  • thread_heap_alloc.hpp

     
    5656{
    5757    namespace detail
    5858    {
    59         inline BOOST_THREAD_DECL void* allocate_raw_heap_memory(unsigned size)
     59        inline void* allocate_raw_heap_memory(unsigned size)
    6060        {
    6161            void* const heap_memory=detail::win32::HeapAlloc(detail::win32::GetProcessHeap(),0,size);
    6262            if(!heap_memory)
     
    6666            return heap_memory;
    6767        }
    6868
    69         inline BOOST_THREAD_DECL void free_raw_heap_memory(void* heap_memory)
     69        inline void free_raw_heap_memory(void* heap_memory)
    7070        {
    7171            BOOST_VERIFY(detail::win32::HeapFree(detail::win32::GetProcessHeap(),0,heap_memory)!=0);
    7272        }