diff options
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/cp/ChangeLog | 1 | ||||
| -rw-r--r-- | gcc/cp/decl.c | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 7db62ec..75c2fd4 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -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> diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index 29e435a..66c34e4 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -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); } |
