Ticket #4347: locks.diff

File locks.diff, 646 bytes (added by Stephen Clamage <stephen.clamage@…>, 12 years ago)

diffs for boost/thread/locks.hpp

  • boost/thread/locks.hpp

     
    214214        unique_lock& operator=(unique_lock&);
    215215        unique_lock& operator=(upgrade_lock<Mutex>& other);
    216216    public:
    217 #ifdef __SUNPRO_CC
     217#if BOOST_WORKAROUND(__SUNPRO_CC, < 0x5100)
    218218        unique_lock(const volatile unique_lock&);
    219219#endif
    220220        unique_lock():
     
    300300            return detail::thread_move_t<unique_lock<Mutex> >(*this);
    301301        }
    302302
    303 #ifdef __SUNPRO_CC
     303#if BOOST_WORKAROUND(__SUNPRO_CC, < 0x5100)
    304304        unique_lock& operator=(unique_lock<Mutex> other)
    305305        {
    306306            swap(other);