| 88 | } |
| 89 | |
| 90 | static struct commit *nonstale_queue_get_dedup(struct nonstale_queue *queue) |
| 91 | { |
| 92 | struct commit *commit = nonstale_queue_get(queue); |
| 93 | |
| 94 | if (commit) |
| 95 | commit->object.flags &= ~ENQUEUED; |
| 96 | return commit; |
| 97 | } |
| 98 | |
| 99 | /* all input commits in one and twos[] must have been parsed! */ |
| 100 | static int paint_down_to_common(struct repository *r, |
no test coverage detected