diff options
author | Elijah Newren <newren@gmail.com> | 2023-05-16 08:33:59 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-06-21 22:39:53 +0200 |
commit | c339932bd858e84490c8690d393307a58764d6ed (patch) | |
tree | 0785f07a2cc7b4daab10e8b027de8664a0ec1340 /merge-ort.c | |
parent | log-tree: replace include of revision.h with simple forward declaration (diff) | |
download | git-c339932bd858e84490c8690d393307a58764d6ed.tar.xz git-c339932bd858e84490c8690d393307a58764d6ed.zip |
repository: remove unnecessary include of path.h
This also made it clear that several .c files that depended upon path.h
were missing a #include for it; add the missing includes while at it.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'merge-ort.c')
-rw-r--r-- | merge-ort.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/merge-ort.c b/merge-ort.c index 12d0181f4a..587eea9801 100644 --- a/merge-ort.c +++ b/merge-ort.c @@ -36,6 +36,7 @@ #include "object-name.h" #include "object-store.h" #include "oid-array.h" +#include "path.h" #include "promisor-remote.h" #include "read-cache-ll.h" #include "revision.h" |