Search Results

1
vote

Inspecting STL containers in XCode

The ability to view the container's items may rely on the complexity of the templated type. For trivial objects like int, bool, etc., and even simple class templates like template …
2
votes

How do stl containers get deleted?

Use either smart pointers inside of the vector, or use boost's ptr_vector. It will automatically free up the allocated objects inside of it. There are also maps, sets, etc. …