| 98 | } |
| 99 | |
| 100 | void mark_tree_uninteresting(struct repository *r, struct tree *tree) |
| 101 | { |
| 102 | struct object *obj; |
| 103 | |
| 104 | if (!tree) |
| 105 | return; |
| 106 | |
| 107 | obj = &tree->object; |
| 108 | if (obj->flags & UNINTERESTING) |
| 109 | return; |
| 110 | obj->flags |= UNINTERESTING; |
| 111 | mark_tree_contents_uninteresting(r, tree); |
| 112 | } |
| 113 | |
| 114 | struct path_and_oids_entry { |
| 115 | struct hashmap_entry ent; |
no test coverage detected