I'm using boost::scoped_array in a container that I want to make copy-on-write but I fear that scoped_array won't work. Which boost::smart_ptr container is closest to cow-safe scoped array?

link|improve this question

77% accept rate
what do you mean by "won't work?" In what way don't you think it will work? – rcollyer Oct 6 '11 at 16:54
The noncopyable design may make reference aliasing more trouble than it's worth. Less work to just use shared_array. – moshbear Oct 7 '11 at 3:59
feedback

1 Answer

up vote 2 down vote accepted

You could use boost::shared_array.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.