Stefan Beller <sbel...@google.com> writes: > This applies on top of sb/oid-object-info and is the logical continuum of > the series that it builds on; this brings the object store into more of > Gits code, removing global state, such that reasoning about the state of > the in-memory representation of the repository is easier.
I am not sure how well this topic is done, but I've queued the following patch at the tip of the topic to make it compile after getting merged to integration branches (curiously, the topic by itself compiled file for whatever reason). I think I haven't send that fixup patch out, so here it is. -- >8 -- From: Junio C Hamano <gits...@pobox.com> Date: Wed, 2 May 2018 19:09:50 +0900 Subject: [PATCH] alloc.c: include alloc.h Otherwise the definition in alloc.c would not see the matching decl in alloc.h, triggering warning from compiler. Signed-off-by: Junio C Hamano <gits...@pobox.com> --- alloc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/alloc.c b/alloc.c index 66a3d07ba2..f47a67153b 100644 --- a/alloc.c +++ b/alloc.c @@ -16,6 +16,7 @@ #include "tree.h" #include "commit.h" #include "tag.h" +#include "alloc.h" #define BLOCKING 1024 -- 2.17.0-391-g1f1cddd558