| 79 | } |
| 80 | |
| 81 | static void nonstale_queue_put_dedup(struct nonstale_queue *queue, |
| 82 | struct commit *c) |
| 83 | { |
| 84 | if (c->object.flags & ENQUEUED) |
| 85 | return; |
| 86 | c->object.flags |= ENQUEUED; |
| 87 | nonstale_queue_put(queue, c); |
| 88 | } |
| 89 | |
| 90 | static struct commit *nonstale_queue_get_dedup(struct nonstale_queue *queue) |
| 91 | { |
no test coverage detected