| 412 | } |
| 413 | |
| 414 | static void clear_paths_to_lists(struct strmap *map) |
| 415 | { |
| 416 | struct hashmap_iter iter; |
| 417 | struct strmap_entry *e; |
| 418 | |
| 419 | hashmap_for_each_entry(&map->map, &iter, e, ent) { |
| 420 | struct type_and_oid_list *list = e->value; |
| 421 | oid_array_clear(&list->oids); |
| 422 | } |
| 423 | strmap_clear(map, 1); |
| 424 | strmap_init(map); |
| 425 | } |
| 426 | |
| 427 | static struct repository *edge_repo; |
| 428 | static struct type_and_oid_list *edge_tree_list; |
no test coverage detected