| 2022 | } |
| 2023 | |
| 2024 | void commit_stack_grow(struct commit_stack *stack, size_t extra) |
| 2025 | { |
| 2026 | ALLOC_GROW(stack->items, st_add(stack->nr, extra), stack->alloc); |
| 2027 | } |
| 2028 | |
| 2029 | void commit_stack_push(struct commit_stack *stack, struct commit *commit) |
| 2030 | { |
no test coverage detected