diff options
Diffstat (limited to 'contrib/intarray/_int.h')
-rw-r--r-- | contrib/intarray/_int.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/contrib/intarray/_int.h b/contrib/intarray/_int.h index 97e6fe642fc..0a1888da3b1 100644 --- a/contrib/intarray/_int.h +++ b/contrib/intarray/_int.h @@ -66,10 +66,8 @@ typedef char BITVEC[SIGLEN]; typedef char *BITVECP; -#define LOOPBYTE(a) \ - for(i=0;i<SIGLEN;i++) {\ - a;\ - } +#define LOOPBYTE \ + for(i=0;i<SIGLEN;i++) /* beware of multiple evaluation of arguments to these macros! */ #define GETBYTE(x,i) ( *( (BITVECP)(x) + (int)( (i) / BITS_PER_BYTE ) ) ) |