error C2947: expecting '>' to terminate template-argument-list, found '>>'

wrong issue in VC7
std::vector<map<string, string>>regIt;
Solution put a space in between the arrows
std::vector<map<string, string> >regIt;
It will work.

Leave a Reply

Your email address will not be published. Required fields are marked *