Memory Allocation by STL C++ Objects
- by Vaibhav
I am using malloc_stats() function to display the amount of "system bytes" and "in use" bytes used by the process. I wanted to know if the in use bytes also include the memory used by STL C++ Objects like map, vector, sets?
If yes, is it safe to assume that this is only amount of memory that will be used by the process?