From: Jonathan Nieder Date: Wed, 5 Jan 2011 00:36:34 +0000 (-0600) Subject: quote.h: simplify the inclusion X-Git-Tag: v1.7.4.1~8 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=cf548cacdd0c553b6524969d0d3fd5e787efeb3c;p=git.git quote.h: simplify the inclusion Attempting to include quote.h without first including strbuf.h results in warnings: ./quote.h:33:33: warning: ‘struct strbuf’ declared inside parameter list ./quote.h:33:33: warning: its scope is only this definition or declaration, which is probably not what you want ./quote.h:34:34: warning: ‘struct strbuf’ declared inside parameter list ... Add a toplevel declaration for struct strbuf to avoid this. While at it, stop including system headers from quote.h. git source files already need to include git-compat-util.h sooner to ensure the appropriate feature test macros are defined. Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/quote.h b/quote.h index 38003bff5..024e21d80 100644 --- a/quote.h +++ b/quote.h @@ -1,8 +1,7 @@ #ifndef QUOTE_H #define QUOTE_H -#include -#include +struct strbuf; /* Help to copy the thing properly quoted for the shell safety. * any single quote is replaced with '\'', any exclamation point