From 841667053837143adaa91e24e7214b191ee179a1 Mon Sep 17 00:00:00 2001 From: jsm28 Date: Sun, 3 Oct 2004 20:53:05 +0000 Subject: * c-aux-info.c, c-common.c, c-common.h, c-cppbuiltin.c, c-decl.c, c-format.c, c-incpath.c, c-lex.c, c-objc-common.c, c-opts.c, c-parse.in, c-pch.c, c-ppoutput.c, c-pragma.c, c-typeck.c: Follow code formatting conventions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88462 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/c-common.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gcc/c-common.h') diff --git a/gcc/c-common.h b/gcc/c-common.h index 46e843b0004..77a415d7f03 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -113,16 +113,16 @@ enum rid }; #define OBJC_IS_AT_KEYWORD(rid) \ - ((unsigned int)(rid) >= (unsigned int)RID_FIRST_AT && \ - (unsigned int)(rid) <= (unsigned int)RID_LAST_AT) + ((unsigned int) (rid) >= (unsigned int) RID_FIRST_AT && \ + (unsigned int) (rid) <= (unsigned int) RID_LAST_AT) #define OBJC_IS_PQ_KEYWORD(rid) \ - ((unsigned int)(rid) >= (unsigned int)RID_FIRST_PQ && \ - (unsigned int)(rid) <= (unsigned int)RID_LAST_PQ) + ((unsigned int) (rid) >= (unsigned int) RID_FIRST_PQ && \ + (unsigned int) (rid) <= (unsigned int) RID_LAST_PQ) /* The elements of `ridpointers' are identifier nodes for the reserved type names and storage classes. It is indexed by a RID_... value. */ -extern GTY ((length ("(int)RID_MAX"))) tree *ridpointers; +extern GTY ((length ("(int) RID_MAX"))) tree *ridpointers; /* Standard named or nameless data types of the C compiler. */ -- cgit v1.2.1