diff options
author | Andreas Schwab <schwab@suse.de> | 2004-06-24 09:34:23 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@gcc.gnu.org> | 2004-06-24 09:34:23 +0000 |
commit | 5e7752d2accb473545101b7d6096bbe599eb864c (patch) | |
tree | 0cc350c13ab5236b24228f5e41d76b71e570a13a /gcc | |
parent | b713a445f2bfa00419e7efdb5ffc0cf89e335227 (diff) | |
download | gcc-5e7752d2accb473545101b7d6096bbe599eb864c.zip gcc-5e7752d2accb473545101b7d6096bbe599eb864c.tar.gz gcc-5e7752d2accb473545101b7d6096bbe599eb864c.tar.bz2 |
* cp-tree.h (enum cp_storage_class): Remove trailing comma.
From-SVN: r83587
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/cp-tree.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 5a18b46..678e0ca 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2004-06-24 Andreas Schwab <schwab@suse.de> + + * cp-tree.h (enum cp_storage_class): Remove trailing comma. + 2004-06-23 Mark Mitchell <mark@codesourcery.com> * Make-lang.in (cp/lex.o): Do not depend on cp/lex.h. diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index ecd9b18..143c931 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -3513,7 +3513,7 @@ typedef enum cp_storage_class { sc_register, sc_static, sc_extern, - sc_mutable, + sc_mutable } cp_storage_class; /* An individual decl-specifier. */ |