diff options
| author | Elijah Newren <newren@gmail.com> | 2023-02-24 00:09:23 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-02-23 17:25:28 -0800 |
| commit | 15db4e7f4ac20cc41902a2479c7784fff8edf2e9 (patch) | |
| tree | 041fdf546a331a01315c23ea633d1bd5a1ac99a2 /t/helper/test-simple-ipc.c | |
| parent | ba3d1c73daa02152acf4729d45ca7fe4d71d5747 (diff) | |
| download | git-15db4e7f4ac20cc41902a2479c7784fff8edf2e9.tar.gz | |
treewide: remove unnecessary cache.h includes in source files
We had several C files include cache.h unnecessarily. Replace those
with an include of "git-compat-util.h" instead. Much like the previous
commit, these have all been verified via both ensuring that
gcc -E $SOURCE_FILE | grep '"cache.h"'
found no hits and that
make DEVELOPER=1 ${OBJECT_FILE_FOR_SOURCE_FILE}
successfully compiles without warnings.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/helper/test-simple-ipc.c')
| -rw-r--r-- | t/helper/test-simple-ipc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/helper/test-simple-ipc.c b/t/helper/test-simple-ipc.c index 28365ff85b..3d1436da59 100644 --- a/t/helper/test-simple-ipc.c +++ b/t/helper/test-simple-ipc.c @@ -3,13 +3,14 @@ */ #include "test-tool.h" -#include "cache.h" +#include "gettext.h" #include "strbuf.h" #include "simple-ipc.h" #include "parse-options.h" #include "thread-utils.h" #include "strvec.h" #include "run-command.h" +#include "trace2.h" #ifndef SUPPORTS_SIMPLE_IPC int cmd__simple_ipc(int argc, const char **argv) |
