diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 32bdc0194e9..47f3f7feb03 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +Wed Jul 26 15:05:51 CEST 2000 Marc Espie + + * parse.y: Add missing ';'. + 2000-07-26 Mark Mitchell * parse.y (empty_parms): Use `()', not `(...)', when in the scope diff --git a/gcc/cp/parse.y b/gcc/cp/parse.y index c7d6bd24af3..763cd6dc12d 100644 --- a/gcc/cp/parse.y +++ b/gcc/cp/parse.y @@ -937,7 +937,7 @@ member_init: { $$ = expand_member_init (current_class_ref, $1, void_type_node); } | error - { $$ = NULL_TREE } + { $$ = NULL_TREE; } ; identifier: