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