Hi
I m trying to create a map of STL which has set as one of it's element.
Following is snippet of my code
..
std::map<std:string,std::set<int,int> > map_of_set;
int a=9;
int b=10;
std::string str="test";
map_of_set.clear();
map_of_set.insert(test,9,10); //This gives compilation error
kindly help