diff options
author | Elijah Newren <newren@gmail.com> | 2023-04-11 05:00:38 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-04-11 17:52:08 +0200 |
commit | 74ea5c9574d29a510602492fcd672e5d09c841b0 (patch) | |
tree | 42338f5830599de07b782a6c6307cd9902793106 /wt-status.c | |
parent | Merge branch 'ab/remove-implicit-use-of-the-repository' into en/header-split-... (diff) | |
download | git-74ea5c9574d29a510602492fcd672e5d09c841b0.tar.xz git-74ea5c9574d29a510602492fcd672e5d09c841b0.zip |
treewide: be explicit about dependence on trace.h & trace2.h
Dozens of files made use of trace and trace2 functions, without
explicitly including trace.h or trace2.h. This made it more difficult
to find which files could remove a dependence on cache.h. Make C files
explicitly include trace.h or trace2.h if they are using them.
Signed-off-by: Elijah Newren <newren@gmail.com>
Acked-by: Calvin Wan <calvinwan@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wt-status.c')
-rw-r--r-- | wt-status.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wt-status.c b/wt-status.c index 4bef09de1c..ccbfd9cc6d 100644 --- a/wt-status.c +++ b/wt-status.c @@ -18,6 +18,8 @@ #include "column.h" #include "setup.h" #include "strbuf.h" +#include "trace.h" +#include "trace2.h" #include "utf8.h" #include "worktree.h" #include "lockfile.h" |