diff options
author | Abhishek Kumar <abhishekkumar8222@gmail.com> | 2020-06-17 11:14:10 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-06-17 23:37:30 +0200 |
commit | c49c82aa4c1036ba1629f73223cff53230e695f3 (patch) | |
tree | 91592f05de84792ad87abc8515662353a4fe6390 /commit.h | |
parent | commit-graph: introduce commit_graph_data_slab (diff) | |
download | git-c49c82aa4c1036ba1629f73223cff53230e695f3.tar.xz git-c49c82aa4c1036ba1629f73223cff53230e695f3.zip |
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 'commit.h')
-rw-r--r-- | commit.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -36,8 +36,6 @@ struct commit { * or get_commit_tree_oid(). */ struct tree *maybe_tree; - uint32_t graph_pos; - uint32_t generation; unsigned int index; }; |