Tagged Questions
1
vote
1answer
140 views
C++ Sharing elements in a boost::ptr_container?
Please consider the following piece of code:
int main()
{
typedef boost::ptr_vector<int> ptr_vector;
ptr_vector vec0;
vec0.push_back(new int(1));
vec0.push_back(new int(2));
...