diff options
author | Joseph Myers <jsm@polyomino.org.uk> | 2004-10-03 21:53:05 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2004-10-03 21:53:05 +0100 |
commit | 3f75a25471fd0a824043ee42e33b2197eeb903f0 (patch) | |
tree | 9317be258ee227dd26354b571fba81483592c1ab /gcc/c-common.h | |
parent | 57c1f13e476cea29f362f827c802e01b59f21025 (diff) | |
download | gcc-3f75a25471fd0a824043ee42e33b2197eeb903f0.zip gcc-3f75a25471fd0a824043ee42e33b2197eeb903f0.tar.gz gcc-3f75a25471fd0a824043ee42e33b2197eeb903f0.tar.bz2 |
c-aux-info.c, [...]: Follow code formatting conventions.
* 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.
From-SVN: r88462
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index 46e843b..77a415d 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. */ |