4 #define intint_map std::multimap<int, int>
5 #define strint_map std::multimap<std::string, int>
6 #define intstr_map std::multimap<int, std::string>
7 #define strstr_map std::multimap<std::string, std::string>
11 int thefoo_rw(int arg = 1)
25 ii.emplace(0,0); // Set break point at this line.
27 thefoo_rw(1); // Set break point at this line.
30 thefoo_rw(1); // Set break point at this line.
35 thefoo_rw(1); // Set break point at this line.
36 ii.emplace(85,1234567);
41 thefoo_rw(1); // Set break point at this line.
44 thefoo_rw(1); // Set break point at this line.
47 si.emplace("three",3);
48 thefoo_rw(1); // Set break point at this line.
52 thefoo_rw(1); // Set break point at this line.
55 thefoo_rw(1); // Set break point at this line.
56 is.emplace(85,"goofy");
58 is.emplace(2,"smart");
60 thefoo_rw(1); // Set break point at this line.
63 thefoo_rw(1); // Set break point at this line.
66 thefoo_rw(1); // Set break point at this line.
68 ss.emplace("ciao","hello");
69 ss.emplace("casa","house");
70 ss.emplace("gatto","cat");
71 thefoo_rw(1); // Set break point at this line.
72 ss.emplace("a Mac..","..is always a Mac!");
75 thefoo_rw(1); // Set break point at this line.