This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
(committed) fix my regression in decl.c
- From: Nathanael Nerode <neroden at twcny dot rr dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Fri, 10 Jan 2003 13:41:23 -0500
- Subject: (committed) fix my regression in decl.c
Committed as obvious. *Whew*. This gets the regression, and it was pure
typo material.
* decl.c (bad_specifiers): Fix parameter order error I introduced.
Index: decl.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cp/decl.c,v
retrieving revision 1.986
diff -u -r1.986 decl.c
--- decl.c 10 Jan 2003 02:22:14 -0000 1.986
+++ decl.c 10 Jan 2003 18:40:08 -0000
@@ -8813,9 +8813,9 @@
const char* type,
int virtualp,
int quals,
+ int inlinep,
int friendp,
- int raises,
- int inlinep)
+ int raises)
{
if (virtualp)
error ("`%D' declared as a `virtual' %s", object, type);