| 559 | } |
| 560 | |
| 561 | static int add_bisect_ref(const struct reference *ref, void *cb) |
| 562 | { |
| 563 | struct add_bisect_ref_data *data = cb; |
| 564 | |
| 565 | add_pending_oid(data->revs, ref->name, ref->oid, data->object_flags); |
| 566 | |
| 567 | return 0; |
| 568 | } |
| 569 | |
| 570 | static int prepare_revs(struct bisect_terms *terms, struct rev_info *revs) |
| 571 | { |
nothing calls this directly
no test coverage detected