diff options
author | Elijah Newren <newren@gmail.com> | 2023-05-16 08:33:57 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-06-21 22:39:53 +0200 |
commit | bc5c5ec0446895f5c4139cd470066beb3c4ac6d5 (patch) | |
tree | 3634954efc29ed76b389c90b0b357c0c96ed425e /resolve-undo.c | |
parent | read-cache*.h: move declarations for read-cache.c functions from cache.h (diff) | |
download | git-bc5c5ec0446895f5c4139cd470066beb3c4ac6d5.tar.xz git-bc5c5ec0446895f5c4139cd470066beb3c4ac6d5.zip |
cache.h: remove this no-longer-used header
Since this header showed up in some places besides just #include
statements, update/clean-up/remove those other places as well.
Note that compat/fsmonitor/fsm-path-utils-darwin.c previously got
away with violating the rule that all files must start with an include
of git-compat-util.h (or a short-list of alternate headers that happen
to include it first). This change exposed the violation and caused it
to stop building correctly; fix it by having it include
git-compat-util.h first, as per policy.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'resolve-undo.c')
-rw-r--r-- | resolve-undo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resolve-undo.c b/resolve-undo.c index 5959887784..7817f5d6db 100644 --- a/resolve-undo.c +++ b/resolve-undo.c @@ -1,4 +1,4 @@ -#include "cache.h" +#include "git-compat-util.h" #include "dir.h" #include "hash.h" #include "read-cache.h" |