Ticket #3844: locks.diff

File locks.diff, 410 bytes (added by trueorca@…, 13 years ago)

Egor Dmitrenkov

  • boost/thread/locks.hpp

    old new  
    266266        unique_lock& operator=(unique_lock&& other)
    267267        {
    268268            unique_lock temp(other.move());
    269             swap(temp);
     269            swap(std::move(temp));
    270270            return *this;
    271271        }
    272272