From: Dirk Mueller Date: Mon, 30 Oct 2006 23:56:15 +0000 (+0000) Subject: * decl.c (grokdeclarator): Fix line-wrapping. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f88d05c05fb3ae6631142428bbb9e06a1b7205fc;p=gcc.git * decl.c (grokdeclarator): Fix line-wrapping. From-SVN: r118210 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 7db62ec9231..75c2fd4314c 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 diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index 29e435abee1..66c34e418da 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); }