Fix a missing return value in the parser.

This commit is contained in:
Matt Pharr
2012-02-06 14:19:37 -08:00
parent ee91fa1228
commit a59fd7eeb3

View File

@@ -1230,6 +1230,7 @@ direct_abstract_declarator
{
Declarator *d = new Declarator(DK_FUNCTION, Union(@1, @3));
if ($2 != NULL) d->functionParams = *$2;
$$ = d;
}
| direct_abstract_declarator '(' ')'
{