On Sunday 19 June 2005 3:21 pm, Gerard Vermeulen wrote:
> Phil
>
> (1 ) sip.h contains the lines
>
> #if !defined(ANY)
> #define ANY void
> #endif
>
> and as far as I can see, ANY isn't used anywhere by SIP or its generated
> code. However, it pollutes the global namespace with nasty side effec
Phil
(1 ) sip.h contains the lines
#if !defined(ANY)
#define ANY void
#endif
and as far as I can see, ANY isn't used anywhere by SIP or its generated code.
However, it pollutes the global namespace with nasty side effects, eg
enum { ANY = 0 };
is preprocessed to
enum { void = 0 };
(2) Since