From: SZEDER Gábor Date: Thu, 20 Aug 2015 14:06:27 +0000 (+0200) Subject: wt-status: move #include "pathspec.h" to the header X-Git-Tag: v2.6.0-rc0~32^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7aa9b9ba02c5cfab5078cc7a7b250bbbb74b316f;p=thirdparty%2Fgit.git wt-status: move #include "pathspec.h" to the header The declaration of 'struct wt_status' requires the declararion of 'struct pathspec'. Signed-off-by: SZEDER Gábor Signed-off-by: Junio C Hamano --- diff --git a/wt-status.c b/wt-status.c index 078a472743..4631119e03 100644 --- a/wt-status.c +++ b/wt-status.c @@ -1,5 +1,4 @@ #include "cache.h" -#include "pathspec.h" #include "wt-status.h" #include "object.h" #include "dir.h" diff --git a/wt-status.h b/wt-status.h index e0a99f75c7..c9b3b744e9 100644 --- a/wt-status.h +++ b/wt-status.h @@ -4,6 +4,7 @@ #include #include "string-list.h" #include "color.h" +#include "pathspec.h" enum color_wt_status { WT_STATUS_HEADER = 0,