| 673 | } |
| 674 | |
| 675 | static void add_refs_to_oidset(struct oidset *oids, struct ref *refs) |
| 676 | { |
| 677 | for (; refs; refs = refs->next) |
| 678 | oidset_insert(oids, &refs->old_oid); |
| 679 | } |
| 680 | |
| 681 | static int is_unmatched_ref(const struct ref *ref) |
| 682 | { |
no test coverage detected