| 541 | } |
| 542 | |
| 543 | void repo_clear_commit_marks(struct repository *r, unsigned int flags) |
| 544 | { |
| 545 | int i; |
| 546 | |
| 547 | for (i = 0; i < r->parsed_objects->obj_hash_size; i++) { |
| 548 | struct object *obj = r->parsed_objects->obj_hash[i]; |
| 549 | if (obj && obj->type == OBJ_COMMIT) |
| 550 | obj->flags &= ~flags; |
| 551 | } |
| 552 | } |
| 553 | |
| 554 | struct parsed_object_pool *parsed_object_pool_new(struct repository *repo) |
| 555 | { |
no outgoing calls
no test coverage detected