I\'m trying to delete the vector\'s content and I\'m getting an error - vector iterator is not incrementable, why is that?
This is my destructor:
C
If you are trying to free the data in the vector, do this:
for (std::vector::iterator it = v.begin(), e = b.end(); it != e; ++it) delete *it;