| 84 | } |
| 85 | |
| 86 | void *alloc_tree_node(struct repository *r) |
| 87 | { |
| 88 | struct tree *t = alloc_node(r->parsed_objects->tree_state, sizeof(struct tree)); |
| 89 | t->object.type = OBJ_TREE; |
| 90 | return t; |
| 91 | } |
| 92 | |
| 93 | void *alloc_tag_node(struct repository *r) |
| 94 | { |
no test coverage detected