summaryrefslogtreecommitdiff
path: root/blame.c
diff options
context:
space:
mode:
authorAbhishek Kumar <abhishekkumar8222@gmail.com>2020-06-17 09:14:10 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-06-17 21:37:30 (GMT)
commitc49c82aa4c1036ba1629f73223cff53230e695f3 (patch)
tree91592f05de84792ad87abc8515662353a4fe6390 /blame.c
parent4844812b9ec9bc6ffdc2da2c54d9146ff4c97d94 (diff)
downloadgit-c49c82aa4c1036ba1629f73223cff53230e695f3.zip
git-c49c82aa4c1036ba1629f73223cff53230e695f3.tar.gz
git-c49c82aa4c1036ba1629f73223cff53230e695f3.tar.bz2
commit: move members graph_pos, generation to a slab
We remove members `graph_pos` and `generation` from the struct commit. The default assignments in init_commit_node() are no longer valid, which is fine as the slab helpers return appropriate default values and the assignments are removed. We will replace existing use of commit->generation and commit->graph_pos by commit_graph_data_slab helpers using `contrib/coccinelle/commit.cocci'. Signed-off-by: Abhishek Kumar <abhishekkumar8222@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'blame.c')
-rw-r--r--blame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/blame.c b/blame.c
index da7e288..82fa16d 100644
--- a/blame.c
+++ b/blame.c
@@ -1272,7 +1272,7 @@ static int maybe_changed_path(struct repository *r,
if (!bd)
return 1;
- if (origin->commit->generation == GENERATION_NUMBER_INFINITY)
+ if (commit_graph_generation(origin->commit) == GENERATION_NUMBER_INFINITY)
return 1;
filter = get_bloom_filter(r, origin->commit, 0);