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.
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