Ticket #6174: patchfile.patch

File patchfile.patch, 564 bytes (added by onlyone@…, 11 years ago)

Fix for #6174

  • boost/thread/future.hpp

     
    322322            void mark_finished_with_result(rvalue_source_type result_)
    323323            {
    324324                boost::lock_guard<boost::mutex> lock(mutex);
    325                 mark_finished_with_result_internal(result_);
     325                mark_finished_with_result_internal(static_cast<rvalue_source_type>(result_));
    326326            }
    327327
    328328            move_dest_type get()