| 278 | } |
| 279 | |
| 280 | static inline struct packed_git *oe_in_pack(const struct packing_data *pack, |
| 281 | const struct object_entry *e) |
| 282 | { |
| 283 | if (pack->in_pack_by_idx) |
| 284 | return pack->in_pack_by_idx[e->in_pack_idx]; |
| 285 | else |
| 286 | return pack->in_pack[e - pack->objects]; |
| 287 | } |
| 288 | |
| 289 | void oe_map_new_pack(struct packing_data *pack); |
| 290 |
no outgoing calls
no test coverage detected