diff options
author | Jason Merrill <jason@gcc.gnu.org> | 2000-01-12 19:35:38 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2000-01-12 19:35:38 -0500 |
commit | 6bb88f3be6ef0f0ad8b7a3819ddefafa63283e76 (patch) | |
tree | 61cca0defed3ffde3b2c07266717edc1d282c2fc /gcc | |
parent | 80cca0e191271070ad7579474f799fd940551b96 (diff) | |
download | gcc-6bb88f3be6ef0f0ad8b7a3819ddefafa63283e76.zip gcc-6bb88f3be6ef0f0ad8b7a3819ddefafa63283e76.tar.gz gcc-6bb88f3be6ef0f0ad8b7a3819ddefafa63283e76.tar.bz2 |
delete stray semicolon
From-SVN: r31365
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/class.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/class.c b/gcc/cp/class.c index 16ef0da..23cd82c 100644 --- a/gcc/cp/class.c +++ b/gcc/cp/class.c @@ -3351,7 +3351,7 @@ check_field_decl (field, t, cant_have_const_ctor, (DECL_PACKED (field) ? BITS_PER_UNIT : TYPE_ALIGN (TREE_TYPE (field)))); -}; +} /* Check the data members (both static and non-static), class-scoped typedefs, etc., appearing in the declaration of T. Issue |