diff options
| author | Elijah Newren <newren@gmail.com> | 2023-02-24 00:09:22 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-02-23 17:25:28 -0800 |
| commit | ba3d1c73daa02152acf4729d45ca7fe4d71d5747 (patch) | |
| tree | 08150fe2c7c6de264cf3e11bda09f027e79f126f /xdiff-interface.h | |
| parent | treewide: remove unnecessary git-compat-util.h includes in headers (diff) | |
| download | git-ba3d1c73daa02152acf4729d45ca7fe4d71d5747.tar.gz git-ba3d1c73daa02152acf4729d45ca7fe4d71d5747.zip | |
treewide: remove unnecessary cache.h includes
We had several header files include cache.h unnecessarily. Remove
those. These have all been verified via both ensuring that
gcc -E $HEADER | grep '"cache.h"'
found no hits and that
cat >temp.c <<EOF &&
#include "git-compat-util.h"
#include "$HEADER"
int main() {}
EOF
gcc -c temp.c
successfully compiles without warnings.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'xdiff-interface.h')
| -rw-r--r-- | xdiff-interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xdiff-interface.h b/xdiff-interface.h index 4301a7eef2..3750794afe 100644 --- a/xdiff-interface.h +++ b/xdiff-interface.h @@ -1,7 +1,7 @@ #ifndef XDIFF_INTERFACE_H #define XDIFF_INTERFACE_H -#include "cache.h" +#include "hash.h" #include "xdiff/xdiff.h" /* |
