Intellisense doesn't seem to work in the following scenario:
map<string, int>::const_iterator it = counters.begin();
cout << it->first; // intellisense doesn't suggest "first"
counters is a map container. When I type it-> there are no suggestions for "first" or "second" which are members of pair<string, int> i.e. values stored in the map.
I'm using VAssistX 1246 and VC++.NET 2003. I know Intellisense with C++ is troublesome at the best of times especially when templates are thrown into the mix, but is there a solution to this?
20thCB