diff options
author | Elijah Newren <newren@gmail.com> | 2023-04-22 22:17:23 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-04-24 21:47:33 +0200 |
commit | 5e3f94dfe3c69bc2a711a9dc3b1635e7ff91ab54 (patch) | |
tree | 22e5311dc7a262a2f42cba2b801348baa717dc15 /tree-diff.c | |
parent | cache,tree: move basic name compare functions from read-cache to tree (diff) | |
download | git-5e3f94dfe3c69bc2a711a9dc3b1635e7ff91ab54.tar.xz git-5e3f94dfe3c69bc2a711a9dc3b1635e7ff91ab54.zip |
treewide: remove cache.h inclusion due to previous changes
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'tree-diff.c')
-rw-r--r-- | tree-diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tree-diff.c b/tree-diff.c index a76e6dae61..9ea2dd7a6c 100644 --- a/tree-diff.c +++ b/tree-diff.c @@ -1,7 +1,7 @@ /* * Helper functions for tree diff generation */ -#include "cache.h" +#include "git-compat-util.h" #include "diff.h" #include "diffcore.h" #include "tree.h" |