| 3682 | } |
| 3683 | |
| 3684 | static int mark_uninteresting(const struct object_id *oid, |
| 3685 | struct object_info *oi UNUSED, |
| 3686 | void *cb) |
| 3687 | { |
| 3688 | struct rev_info *revs = cb; |
| 3689 | struct object *o = lookup_unknown_object(revs->repo, oid); |
| 3690 | o->flags |= UNINTERESTING | SEEN; |
| 3691 | return 0; |
| 3692 | } |
| 3693 | |
| 3694 | define_commit_slab(indegree_slab, int); |
| 3695 | define_commit_slab(author_date_slab, timestamp_t); |
nothing calls this directly
no test coverage detected