This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

(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);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]