Hi all,
I want to know how much memory does my umap allocates in ram.
I have the following definitions
std::tr1::unordered_map<string, long> umap;
umap h1;
i do some insertions and at the end i want to know how much memory my umap allocates in ram. How can i find this?
thanks for the help!