| 242 | } |
| 243 | |
| 244 | static int get_object_mark(struct object *object) |
| 245 | { |
| 246 | void *decoration = lookup_decoration(&idnums, object); |
| 247 | if (!decoration) |
| 248 | return 0; |
| 249 | return ptr_to_mark(decoration); |
| 250 | } |
| 251 | |
| 252 | static struct commit *rewrite_commit(struct commit *p) |
| 253 | { |
no test coverage detected