| 530 | } |
| 531 | |
| 532 | void clear_object_flags(struct repository *repo, unsigned flags) |
| 533 | { |
| 534 | int i; |
| 535 | |
| 536 | for (i = 0; i < repo->parsed_objects->obj_hash_size; i++) { |
| 537 | struct object *obj = repo->parsed_objects->obj_hash[i]; |
| 538 | if (obj) |
| 539 | obj->flags &= ~flags; |
| 540 | } |
| 541 | } |
| 542 | |
| 543 | void repo_clear_commit_marks(struct repository *r, unsigned int flags) |
| 544 | { |
no outgoing calls
no test coverage detected