Hello
I have little problem with my code.
Problem is iterator inner.
How can i solve this?
My code
map <string, map <string, string> > m;
map <string, map <string, string> >::iterator outer;
map <string, string>::iterator inner;
m["John"]["VW"]="Golf";
inner=m.find("VW");
if(inner != m.end())
{cout<<inner->second<<endl;}
Best Regards
Danijel