From 6a1fa5f9720c606a11459a006ae9d44741068b74 Mon Sep 17 00:00:00 2001 From: Marc Espie Date: Wed, 26 Jul 2000 18:15:28 +0000 Subject: [PATCH] * parse.y: Add missing ';'. From-SVN: r35266 --- gcc/cp/ChangeLog | 4 ++++ gcc/cp/parse.y | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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: -- 2.30.2