* Update the graph's default column color. */
| 530 | * Update the graph's default column color. |
| 531 | */ |
| 532 | static void graph_increment_column_color(struct git_graph *graph) |
| 533 | { |
| 534 | graph->default_column_color = (graph->default_column_color + 1) % |
| 535 | column_colors_max; |
| 536 | } |
| 537 | |
| 538 | static unsigned short graph_find_commit_color(const struct git_graph *graph, |
| 539 | const struct commit *commit) |
no outgoing calls
no test coverage detected