Boost logo

Boost :

Subject: Re: [boost] [BOOST_FOREACH] Problem to iterate on a non-copyable container...
From: pfultz2 (pfultz2_at_[hidden])
Date: 2015-05-21 13:03:25


> I finally made almost like you: change the lock to an unqiue lock, and
provide
> a copy constructor

Actually, I think it would be better to default construct the lock on copy:

    MyContainer(const MyContainer& other)
        : m_vector(other.m_vector),
          m_lock()
    {
    }

Because on copy you want to severe the relationship, so there is one lock
associated with each copy of the document(or data).

Paul

--
View this message in context: http://boost.2283326.n4.nabble.com/BOOST-FOREACH-Problem-to-iterate-on-a-non-copyable-container-tp4675766p4675926.html
Sent from the Boost - Dev mailing list archive at Nabble.com.

Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk