commit-slabs: remove realloc counter outside of slab struct
commit95bb9d4c326695553b9d5499752e24959e833f82
authorStefan Beller <sbeller@google.com>
Fri, 29 Jun 2018 01:22:14 +0000 (28 18:22 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 29 Jun 2018 17:43:40 +0000 (29 10:43 -0700)
treef08b993b3d120eecf93aeb99f3f3e9d637689f69
parentfd8030c739522acf3f55879b29f4716b36f4d440
commit-slabs: remove realloc counter outside of slab struct

The realloc counter is declared outside the struct for the given slabname,
which makes it harder for a follow up patch to move the declaration of the
struct around as then the counter variable would need special treatment.

As the reallocation counter is currently unused we can just remove it.
If we ever need to count the reallocations again, we can reintroduce
the counter as part of 'struct slabname' in commit-slab-decl.h.

Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
commit-slab-impl.h