Re: [PATCH] remote.c: spell __attribute__ correctly

2016-04-26 Thread Philip Oakley
Thnx, From: "Ramsay Jones" On 25/04/16 22:50, Philip Oakley wrote: From: "Jeff King" On Mon, Apr 25, 2016 at 05:10:30PM -0400, Jeff King wrote: It should be handled in git-compat-util.h, which is included by cache.h, which is included by

Re: [PATCH] remote.c: spell __attribute__ correctly

2016-04-25 Thread Ramsay Jones
On 25/04/16 22:50, Philip Oakley wrote: > From: "Jeff King" >> On Mon, Apr 25, 2016 at 05:10:30PM -0400, Jeff King wrote: >> >>> It should be handled in git-compat-util.h, which is included by cache.h, >>> which is included by remote.c. >>> >>> There we have: >>> >>> #ifndef

Re: [PATCH] remote.c: spell __attribute__ correctly

2016-04-25 Thread Philip Oakley
From: "Jeff King" On Mon, Apr 25, 2016 at 05:10:30PM -0400, Jeff King wrote: It should be handled in git-compat-util.h, which is included by cache.h, which is included by remote.c. There we have: #ifndef __GNUC__ #ifndef __attribute__ #define __attribute__(x) #endif

[PATCH] remote.c: spell __attribute__ correctly

2016-04-25 Thread Jeff King
On Mon, Apr 25, 2016 at 05:10:30PM -0400, Jeff King wrote: > It should be handled in git-compat-util.h, which is included by cache.h, > which is included by remote.c. > > There we have: > > #ifndef __GNUC__ > #ifndef __attribute__ > #define __attribute__(x) > #endif > #endif > >