object.h: stop depending on cache.h; make cache.h depend on object.h

Things should be able to depend on object.h without pulling in all of
cache.h.  Move an enum to allow this.

Note that a couple files previously depended on things brought in
through cache.h indirectly (revision.h -> commit.h -> object.h ->
cache.h).  As such, this change requires making existing dependencies
more explicit in half a dozen files.  The inclusion of strbuf.h in
some headers if of particular note: these headers directly embedded a
strbuf in some new structs, meaning they should have been including
strbuf.h all along but were indirectly getting the necessary
definitions.

Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Elijah Newren
2023-02-24 00:09:30 +00:00
committed by Junio C Hamano
parent b5fa608180
commit a64215b6cd
17 changed files with 36 additions and 32 deletions

2
diff.h
View File

@ -8,6 +8,7 @@
#include "pathspec.h"
#include "object.h"
#include "oidset.h"
#include "strbuf.h"
/**
* The diff API is for programs that compare two sets of files (e.g. two trees,
@ -71,7 +72,6 @@ struct oid_array;
struct option;
struct repository;
struct rev_info;
struct strbuf;
struct userdiff_driver;
typedef int (*pathchange_fn_t)(struct diff_options *options,