OSDN Git Service

* parse.y: Add missing ';'.
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 26 Jul 2000 18:15:28 +0000 (18:15 +0000)
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 26 Jul 2000 18:15:28 +0000 (18:15 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35266 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/parse.y

index 32bdc01..47f3f7f 100644 (file)
@@ -1,3 +1,7 @@
+Wed Jul 26 15:05:51 CEST 2000  Marc Espie <espie@cvs.openbsd.org>
+
+       * parse.y:  Add missing ';'.
+
 2000-07-26  Mark Mitchell  <mark@codesourcery.com>
 
        * parse.y (empty_parms): Use `()', not `(...)', when in the scope
index c7d6bd2..763cd6d 100644 (file)
@@ -937,7 +937,7 @@ member_init:
                { $$ = expand_member_init (current_class_ref, $1,
                                           void_type_node); }
         | error
-                { $$ = NULL_TREE }
+                { $$ = NULL_TREE; }
        ;
 
 identifier: