CVS:
Modified Files: ChangeLog c-exp.y * c-exp.y : fix grammar to parse ellipsis (...) (fix pr4218)
This commit is contained in:
parent
d1b44e837e
commit
bbc2cef268
2 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Tue Dec 28 12:06:57 1993 Kung Hsu (kung@cirdan.cygnus.com)
|
||||
|
||||
* c-exp.y : fix grammar to parse ellipsis (...)
|
||||
|
||||
Mon Dec 27 18:42:14 1993 Kung Hsu (kung@cirdan.cygnus.com)
|
||||
|
||||
* stabsread.c (read_type): fix problem when reading static member
|
||||
|
|
|
@ -831,6 +831,7 @@ typebase /* Implements (approximately): (type-qualifier)* type-specifier */
|
|||
be too. */
|
||||
| CONST_KEYWORD typebase { $$ = $2; }
|
||||
| VOLATILE_KEYWORD typebase { $$ = $2; }
|
||||
| '.' '.' '.' { $$ = NULL; }
|
||||
;
|
||||
|
||||
typename: TYPENAME
|
||||
|
|
Loading…
Reference in a new issue