Commit f88d05c0 by Dirk Mueller Committed by Dirk Mueller

* decl.c (grokdeclarator): Fix line-wrapping.

From-SVN: r118210
parent 32b1d579
......@@ -3,6 +3,7 @@
PR c++/28704
* decl.c (grokdeclarator): Duplicate diagnostic message
for easier translation.
* decl.c (grokdeclarator): Fix line-wrapping.
2006-10-30 Dirk Mueller <dmueller@suse.de>
......
......@@ -8040,8 +8040,10 @@ grokdeclarator (const cp_declarator *declarator,
&& (current_class_type == NULL_TREE || staticp) )
{
error (staticp
? G_("qualified function types cannot be used to declare static member functions")
: G_("qualified function types cannot be used to declare free functions"));
? G_("qualified function types cannot be used to "
"declare static member functions")
: G_("qualified function types cannot be used to "
"declare free functions"));
type = TYPE_MAIN_VARIANT (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