Re: [PATCH 28/35] commit.c: migrate the commit buffer to the parsed object store

2018-06-13 Thread Stefan Beller
On Wed, Jun 6, 2018 at 12:32 PM Duy Nguyen wrote: > > define_commit_slab(buffer_slab, struct commit_buffer); > > struct buffer_slab is defined locally here... > ... > > +struct buffer_slab *allocate_commit_buffer_slab(void); > > So you would need a forward declaration of struct buffer_slab in >

Re: [PATCH 28/35] commit.c: migrate the commit buffer to the parsed object store

2018-06-06 Thread Duy Nguyen
On Wed, May 30, 2018 at 2:48 AM, Stefan Beller wrote: > Signed-off-by: Stefan Beller > --- > commit.c | 29 +++-- > commit.h | 2 ++ > object.c | 5 + > object.h | 2 ++ > 4 files changed, 32 insertions(+), 6 deletions(-) > > diff --git a/commit.c b/commit.c >

[PATCH 28/35] commit.c: migrate the commit buffer to the parsed object store

2018-05-29 Thread Stefan Beller
Signed-off-by: Stefan Beller --- commit.c | 29 +++-- commit.h | 2 ++ object.c | 5 + object.h | 2 ++ 4 files changed, 32 insertions(+), 6 deletions(-) diff --git a/commit.c b/commit.c index fd31c453fdc..45dbf6f1453 100644 --- a/commit.c +++ b/commit.c @@