diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-07-01 12:41:19 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-01 12:41:19 -0700 |
commit | 55f34c8d39dac8a90d4944a77cb7614256c62018 (patch) | |
tree | b04cf4d403ede8667bf4fa504e73e66c9c1f8c2f /commit.h | |
parent | 7a3187eb788854ed3a20fee30b27e68430f753b7 (diff) | |
parent | a84b794ad0622103cae98639d7176b2451dc6f92 (diff) | |
download | git-55f34c8d39dac8a90d4944a77cb7614256c62018.tar.gz |
Merge branch 'jk/commit-info-slab'
Allow adding custom information to commit objects in order to
represent unbound number of flag bits etc.
* jk/commit-info-slab:
commit-slab: introduce a macro to define a slab for new type
commit-slab: avoid large realloc
commit: allow associating auxiliary info on-demand
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ struct commit_list { struct commit { struct object object; void *util; - unsigned int indegree; + unsigned int index; unsigned long date; struct commit_list *parents; struct tree *tree; |