diff options
author | Elijah Newren <newren@gmail.com> | 2023-02-24 01:09:33 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-02-24 02:25:30 +0100 |
commit | cbeab74713b6a97dfe6cf9e3bd9dbf7c68ea4e7b (patch) | |
tree | 80d593fd90c17d94268e187ed3e241af995d4957 /builtin/cat-file.c | |
parent | object-store.h: move struct object_info from cache.h (diff) | |
download | git-cbeab74713b6a97dfe6cf9e3bd9dbf7c68ea4e7b.tar.xz git-cbeab74713b6a97dfe6cf9e3bd9dbf7c68ea4e7b.zip |
replace-object.h: move read_replace_refs declaration from cache.h to here
Adjust several files to be more explicit about their dependency on
replace-objects to accommodate this change.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/cat-file.c')
-rw-r--r-- | builtin/cat-file.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/cat-file.c b/builtin/cat-file.c index 88c5ea8b26..b7a73acb07 100644 --- a/builtin/cat-file.c +++ b/builtin/cat-file.c @@ -18,6 +18,7 @@ #include "oid-array.h" #include "packfile.h" #include "object-store.h" +#include "replace-object.h" #include "promisor-remote.h" #include "mailmap.h" |