diff options
author | Elijah Newren <newren@gmail.com> | 2023-04-11 09:42:00 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-04-11 17:52:11 +0200 |
commit | 77f091ed9f289e55c9cc48d2d937d52f4f317de9 (patch) | |
tree | 988f457f9b132ae9a3c1f7da6e0d3953cf55fb46 | |
parent | pager.h: move declarations for pager.c functions from cache.h (diff) | |
download | git-77f091ed9f289e55c9cc48d2d937d52f4f317de9.tar.xz git-77f091ed9f289e55c9cc48d2d937d52f4f317de9.zip |
treewide: remove cache.h inclusion due to pager.h changes
Signed-off-by: Elijah Newren <newren@gmail.com>
Acked-by: Calvin Wan <calvinwan@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | column.c | 2 | ||||
-rw-r--r-- | editor.c | 2 | ||||
-rw-r--r-- | pager.c | 2 | ||||
-rw-r--r-- | pretty.c | 2 | ||||
-rw-r--r-- | progress.c | 2 |
5 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ -#include "cache.h" +#include "git-compat-util.h" #include "config.h" #include "column.h" #include "string-list.h" @@ -1,4 +1,4 @@ -#include "cache.h" +#include "git-compat-util.h" #include "abspath.h" #include "advice.h" #include "config.h" @@ -1,4 +1,4 @@ -#include "cache.h" +#include "git-compat-util.h" #include "config.h" #include "editor.h" #include "pager.h" @@ -1,4 +1,4 @@ -#include "cache.h" +#include "git-compat-util.h" #include "alloc.h" #include "config.h" #include "commit.h" diff --git a/progress.c b/progress.c index 96a8e36a52..72d5e0c73c 100644 --- a/progress.c +++ b/progress.c @@ -9,7 +9,7 @@ */ #define GIT_TEST_PROGRESS_ONLY -#include "cache.h" +#include "git-compat-util.h" #include "pager.h" #include "progress.h" #include "strbuf.h" |