I was wondering if this code leak :
int main()
{
boost::ptr_vector <char> v;
v.push_back(new char[10]);
v.clear()
}
Will the ptr_vector destructor or clear() function delete the pointers it contains or do i have to do it myself?
v.push_back(new char[10]);I don't think this does what you think it does. Looking at the Boost documentationpush_backonly covers a single elements. (At any rate there'd be no way for the callee to know the size of your allocation.) – asveikau Feb 9 '11 at 20:23new[]withdeleteinvokes undefined behavior. It's pure coincidence that it appears to work fine. – FredOverflow Feb 9 '11 at 20:30std::vector<std::string>. – FredOverflow Feb 9 '11 at 20:44