| 2223 | } |
| 2224 | |
| 2225 | static int add_to_object_array(const struct object_id *oid, void *data) |
| 2226 | { |
| 2227 | struct object_array *a = data; |
| 2228 | |
| 2229 | add_object_array(lookup_object(the_repository, oid), "", a); |
| 2230 | return 0; |
| 2231 | } |
| 2232 | |
| 2233 | static void clear_common_flag(struct oidset *s) |
| 2234 | { |
nothing calls this directly
no test coverage detected