Ticket #4367: test_thread_move_return.patch

File test_thread_move_return.patch, 491 bytes (added by sergey.sprogis@…, 12 years ago)

this is patch for test_thread_move_return.cpp file

  • libs/thread/test/test_thread_move_return.cpp

     
    1313boost::thread make_thread_move_return(boost::thread::id* the_id)
    1414{
    1515    boost::thread t(do_nothing,the_id);
    16     return boost::move(t);
     16    boost::thread(boost::move(t));
    1717}
    1818
    1919void test_move_from_function_move_return()