4 #define intint_map std::map<int, int>
5 #define strint_map std::map<std::string, int>
6 #define intstr_map std::map<int, std::string>
7 #define strstr_map std::map<std::string, std::string>
14 ii[0] = 0; // Set break point at this line.
16 ii[2] = 0;// Set break point at this line.
18 ii[4] = 0;// Set break point at this line.
24 ii.clear();// Set break point at this line.
28 si["zero"] = 0;// Set break point at this line.
29 si["one"] = 1;// Set break point at this line.
34 si.clear();// Set break point at this line.
38 is[85] = "goofy";// Set break point at this line.
43 is.clear();// Set break point at this line.
47 ss["ciao"] = "hello";// Set break point at this line.
50 ss["a Mac.."] = "..is always a Mac!";
52 ss.clear();// Set break point at this line.
54 return 0;// Set break point at this line.