Merge branch 'nd/pack-struct-commit'

Memory optimization.

* nd/pack-struct-commit:
  commit.h: rearrange 'index' to shrink struct commit
This commit is contained in:
Junio C Hamano 2018-05-30 14:04:08 +09:00
Родитель 26597cb0cc 25f859fdf4
Коммит a4eae17c2c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -19,7 +19,6 @@ struct commit_list {
struct commit {
struct object object;
void *util;
unsigned int index;
timestamp_t date;
struct commit_list *parents;
@ -30,6 +29,7 @@ struct commit {
*/
struct tree *maybe_tree;
uint32_t graph_pos;
unsigned int index;
};
extern int save_commit_buffer;