Hi all,
I am doing something like this
int f(){
umap::iterator p = mmap.find(s);
if(p != mmap.end()){
.......
}
}
My memory usage is somehow constantly increasing.
While exiting the function do I need explicitly delete the iterator p?
Thanks in advance,
_alen