diff options
author | Elijah Newren <newren@gmail.com> | 2023-12-23 18:14:55 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-12-26 21:04:32 +0100 |
commit | a28fe2d9014758e18d870b1086b5a0c2be76d11f (patch) | |
tree | b62a86dfd035a6ef9a4dea3fa190e9284f8ef5c7 /log-tree.c | |
parent | http.h: remove unnecessary include (diff) | |
download | git-a28fe2d9014758e18d870b1086b5a0c2be76d11f.tar.xz git-a28fe2d9014758e18d870b1086b5a0c2be76d11f.zip |
line-log.h: remove unnecessary include
The unnecessary include in the header transitively pulled in some
other headers actually needed by source files, though. Have those
source files explicitly include the headers they need.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'log-tree.c')
-rw-r--r-- | log-tree.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/log-tree.c b/log-tree.c index 504da6b519..337b9334cd 100644 --- a/log-tree.c +++ b/log-tree.c @@ -2,6 +2,7 @@ #include "commit-reach.h" #include "config.h" #include "diff.h" +#include "diffcore.h" #include "environment.h" #include "hex.h" #include "object-name.h" |