| 116 | } |
| 117 | |
| 118 | uint32_t commit_graph_position(const struct commit *c) |
| 119 | { |
| 120 | struct commit_graph_data *data = |
| 121 | commit_graph_data_slab_peek(&commit_graph_data_slab, c); |
| 122 | |
| 123 | return data ? data->graph_pos : COMMIT_NOT_FROM_GRAPH; |
| 124 | } |
| 125 | |
| 126 | timestamp_t commit_graph_generation(const struct commit *c) |
| 127 | { |
no outgoing calls
no test coverage detected