| 11 | }; |
| 12 | |
| 13 | static void print_objs(const std::vector<acl::diff_object*>& objs, |
| 14 | const char* prompt, int max) |
| 15 | { |
| 16 | int i = 0; |
| 17 | for (std::vector<acl::diff_object*>::const_iterator cit = objs.begin(); |
| 18 | cit != objs.end() && i++ < max; ++cit) |
| 19 | { |
| 20 | printf(">>%s->%d: key: %s, val: %s\r\n", |
| 21 | prompt, i, (*cit)->get_key(), (*cit)->get_val()); |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | static void print_objs( |
| 26 | const std::vector<std::pair<acl::diff_object*, acl::diff_object*> >& objs, |
no test coverage detected
searching dependent graphs…