diff options
author | Elijah Newren <newren@gmail.com> | 2023-05-16 08:33:58 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-06-21 22:39:53 +0200 |
commit | 0fd2e21571ac3a26e898fa6ce130894fd408080e (patch) | |
tree | 27cb48db22bafa614a266213b3e4bb0215e13edf /log-tree.h | |
parent | cache.h: remove this no-longer-used header (diff) | |
download | git-0fd2e21571ac3a26e898fa6ce130894fd408080e.tar.xz git-0fd2e21571ac3a26e898fa6ce130894fd408080e.zip |
log-tree: replace include of revision.h with simple forward declaration
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | log-tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/log-tree.h b/log-tree.h index e7e4641cf8..bdb6432815 100644 --- a/log-tree.h +++ b/log-tree.h @@ -1,7 +1,7 @@ #ifndef LOG_TREE_H #define LOG_TREE_H -#include "revision.h" +struct rev_info; struct log_info { struct commit *commit, *parent; |