diff options
author | Elijah Newren <newren@gmail.com> | 2023-05-16 06:33:59 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-05-16 08:58:17 -0700 |
commit | f6a61d3055132d10a9a9833333295c608302c4b7 (patch) | |
tree | d0e17ab5a07f6e68f166d78720c1e4535872564d /builtin/branch.c | |
parent | e1fcb3a5340d9640bbe71e116c4cd5a70c9f29b9 (diff) | |
download | git-f6a61d3055132d10a9a9833333295c608302c4b7.tar.gz |
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 'builtin/branch.c')
-rw-r--r-- | builtin/branch.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/branch.c b/builtin/branch.c index 5e9b0e4ea4..84f13b0cc7 100644 --- a/builtin/branch.c +++ b/builtin/branch.c @@ -18,6 +18,7 @@ #include "parse-options.h" #include "branch.h" #include "diff.h" +#include "path.h" #include "revision.h" #include "string-list.h" #include "column.h" |