Git fork

blame.h: remove unnecessary includes

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>

authored by

Elijah Newren and committed by
Junio C Hamano
bd6cc1d9 c2c4138c

+2 -3
+2
blame.c
··· 3 3 #include "object-store-ll.h" 4 4 #include "cache-tree.h" 5 5 #include "mergesort.h" 6 + #include "commit.h" 6 7 #include "convert.h" 7 8 #include "diff.h" 8 9 #include "diffcore.h" ··· 10 11 #include "hex.h" 11 12 #include "path.h" 12 13 #include "read-cache.h" 14 + #include "revision.h" 13 15 #include "setup.h" 14 16 #include "tag.h" 15 17 #include "trace2.h"
-3
blame.h
··· 1 1 #ifndef BLAME_H 2 2 #define BLAME_H 3 3 4 - #include "commit.h" 5 4 #include "oidset.h" 6 5 #include "xdiff-interface.h" 7 - #include "revision.h" 8 6 #include "prio-queue.h" 9 - #include "diff.h" 10 7 11 8 #define PICKAXE_BLAME_MOVE 01 12 9 #define PICKAXE_BLAME_COPY 02