diff options
| author | Elijah Newren <newren@gmail.com> | 2023-04-22 20:17:08 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-04-24 12:47:31 -0700 |
| commit | 69a63fe663874716d2b5bf49b90c550f8279358e (patch) | |
| tree | 8632944c5e95a3d061d21913baf45b36b51857d9 /t/helper | |
| parent | protocol.h: move definition of DEFAULT_GIT_PORT from cache.h (diff) | |
| download | git-69a63fe663874716d2b5bf49b90c550f8279358e.tar.gz git-69a63fe663874716d2b5bf49b90c550f8279358e.zip | |
treewide: be explicit about dependence on strbuf.h
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/helper')
| -rw-r--r-- | t/helper/test-mergesort.c | 1 | ||||
| -rw-r--r-- | t/helper/test-oid-array.c | 1 | ||||
| -rw-r--r-- | t/helper/test-oidtree.c | 1 | ||||
| -rw-r--r-- | t/helper/test-parse-options.c | 1 | ||||
| -rw-r--r-- | t/helper/test-string-list.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/t/helper/test-mergesort.c b/t/helper/test-mergesort.c index 737e0c5235..3aabae6c1c 100644 --- a/t/helper/test-mergesort.c +++ b/t/helper/test-mergesort.c @@ -2,6 +2,7 @@ #include "cache.h" #include "mem-pool.h" #include "mergesort.h" +#include "strbuf.h" static uint32_t minstd_rand(uint32_t *state) { diff --git a/t/helper/test-oid-array.c b/t/helper/test-oid-array.c index fd6f73ea03..ea3bf27898 100644 --- a/t/helper/test-oid-array.c +++ b/t/helper/test-oid-array.c @@ -3,6 +3,7 @@ #include "hex.h" #include "oid-array.h" #include "setup.h" +#include "strbuf.h" static int print_oid(const struct object_id *oid, void *data) { diff --git a/t/helper/test-oidtree.c b/t/helper/test-oidtree.c index edcb7e9f44..796c9811e0 100644 --- a/t/helper/test-oidtree.c +++ b/t/helper/test-oidtree.c @@ -3,6 +3,7 @@ #include "hex.h" #include "oidtree.h" #include "setup.h" +#include "strbuf.h" static enum cb_next print_oid(const struct object_id *oid, void *data) { diff --git a/t/helper/test-parse-options.c b/t/helper/test-parse-options.c index 506835521a..20a81a1eb2 100644 --- a/t/helper/test-parse-options.c +++ b/t/helper/test-parse-options.c @@ -1,6 +1,7 @@ #include "test-tool.h" #include "cache.h" #include "parse-options.h" +#include "strbuf.h" #include "string-list.h" #include "trace2.h" diff --git a/t/helper/test-string-list.c b/t/helper/test-string-list.c index 2123dda85b..959f27c74c 100644 --- a/t/helper/test-string-list.c +++ b/t/helper/test-string-list.c @@ -1,5 +1,6 @@ #include "test-tool.h" #include "cache.h" +#include "strbuf.h" #include "string-list.h" /* |
