From: Felipe Contreras Date: Thu, 31 Oct 2013 09:25:36 +0000 (-0600) Subject: revision: add missing include X-Git-Tag: v1.8.5-rc1~1^2~9 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/19ecb564ad15d6eb0544d11d808ca8dc9a198bdf revision: add missing include Otherwise we might not have 'struct diff_options'. [jc: needs a matching follow-up patch to remove inclusion of diff.h from *.c files that do not themselves use anything from diff.h] Signed-off-by: Felipe Contreras Signed-off-by: Junio C Hamano --- diff --git a/revision.h b/revision.h index e7f1d211bf..89132df2fa 100644 --- a/revision.h +++ b/revision.h @@ -5,6 +5,7 @@ #include "grep.h" #include "notes.h" #include "commit.h" +#include "diff.h" #define SEEN (1u<<0) #define UNINTERESTING (1u<<1)