diff options
Diffstat (limited to 'gcc/cpphash.h')
-rw-r--r-- | gcc/cpphash.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cpphash.h b/gcc/cpphash.h index 5b0f0e8..61027f2 100644 --- a/gcc/cpphash.h +++ b/gcc/cpphash.h @@ -166,10 +166,10 @@ struct tokenrun }; /* Accessor macros for struct cpp_context. */ -#define FIRST(c) (c->u.iso.first) -#define LAST(c) (c->u.iso.last) -#define CUR(c) (c->u.trad.cur) -#define RLIMIT(c) (c->u.trad.rlimit) +#define FIRST(c) ((c)->u.iso.first) +#define LAST(c) ((c)->u.iso.last) +#define CUR(c) ((c)->u.trad.cur) +#define RLIMIT(c) ((c)->u.trad.rlimit) typedef struct cpp_context cpp_context; struct cpp_context |