diff options
| author | Elijah Newren <newren@gmail.com> | 2023-05-16 06:34:00 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-06-21 13:39:53 -0700 |
| commit | df6e8744966bfa66ff289f58372bb060fdc6a124 (patch) | |
| tree | 7267d8461f4322e931b8b407627c497d6485b538 /t | |
| parent | c339932bd858e84490c8690d393307a58764d6ed (diff) | |
| download | git-df6e8744966bfa66ff289f58372bb060fdc6a124.tar.gz | |
diff.h: remove unnecessary include of oidset.h
This also made it clear that several .c files depended upon various
things that oidset included, but had omitted the direct #include for
those headers. Add those now.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
| -rw-r--r-- | t/helper/test-fast-rebase.c | 1 | ||||
| -rw-r--r-- | t/helper/test-revision-walking.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/t/helper/test-fast-rebase.c b/t/helper/test-fast-rebase.c index 62c5b5d704..cac20a72b3 100644 --- a/t/helper/test-fast-rebase.c +++ b/t/helper/test-fast-rebase.c @@ -16,6 +16,7 @@ #include "commit.h" #include "environment.h" #include "gettext.h" +#include "hash.h" #include "hex.h" #include "lockfile.h" #include "merge-ort.h" diff --git a/t/helper/test-revision-walking.c b/t/helper/test-revision-walking.c index 0c62b9de18..f346951bc2 100644 --- a/t/helper/test-revision-walking.c +++ b/t/helper/test-revision-walking.c @@ -11,6 +11,7 @@ #include "test-tool.h" #include "commit.h" #include "diff.h" +#include "repository.h" #include "revision.h" #include "setup.h" |
