| 372 | } |
| 373 | |
| 374 | void add_pending_oid(struct rev_info *revs, const char *name, |
| 375 | const struct object_id *oid, unsigned int flags) |
| 376 | { |
| 377 | struct object *object = get_reference(revs, name, oid, flags); |
| 378 | add_pending_object(revs, object, name); |
| 379 | } |
| 380 | |
| 381 | static struct commit *handle_commit(struct rev_info *revs, |
| 382 | struct object_array_entry *entry) |
no test coverage detected