Commit 45225759 by Nathanael Nerode

* decl.c (bad_specifiers): Fix parameter order error I introduced.

From-SVN: r61162
parent 3dfabf63
2003-01-09 Nathanael Nerode <neroden@gcc.gnu.org>
* decl.c (bad_specifiers): Fix parameter order error I introduced.
2003-01-09 Geoffrey Keating <geoffk@apple.com> 2003-01-09 Geoffrey Keating <geoffk@apple.com>
Merge from pch-branch: Merge from pch-branch:
......
...@@ -8813,9 +8813,9 @@ bad_specifiers (tree object, ...@@ -8813,9 +8813,9 @@ bad_specifiers (tree object,
const char* type, const char* type,
int virtualp, int virtualp,
int quals, int quals,
int inlinep,
int friendp, int friendp,
int raises, int raises)
int inlinep)
{ {
if (virtualp) if (virtualp)
error ("`%D' declared as a `virtual' %s", object, type); error ("`%D' declared as a `virtual' %s", object, type);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment