| 109 | COMMIT_SLAB_INIT(1, commit_graph_data_slab); |
| 110 | |
| 111 | static int get_configured_generation_version(struct repository *r) |
| 112 | { |
| 113 | int version = 2; |
| 114 | repo_config_get_int(r, "commitgraph.generationversion", &version); |
| 115 | return version; |
| 116 | } |
| 117 | |
| 118 | uint32_t commit_graph_position(const struct commit *c) |
| 119 | { |
no test coverage detected