Ticket #5617: boost-1.46-thread-copy-ctor.patch

File boost-1.46-thread-copy-ctor.patch, 506 bytes (added by Jason Newton <nevion@…>, 11 years ago)
  • boost/thread/detail/thread.hpp

    diff -ruN boost_1_46_0/boost/thread/detail/thread.hpp boost_1_46_0.new/boost/thread/detail/thread.hpp
    old new  
    400400        id():
    401401            thread_data()
    402402        {}
     403
     404        id(const id& other):
     405            thread_data(other.thread_data)
     406        {}
    403407           
    404408        bool operator==(const id& y) const
    405409        {