From f88d05c05fb3ae6631142428bbb9e06a1b7205fc Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 30 Oct 2006 23:56:15 +0000 Subject: [PATCH] * decl.c (grokdeclarator): Fix line-wrapping. From-SVN: r118210 --- gcc/cp/ChangeLog | 1 + gcc/cp/decl.c | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) 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); } -- 2.30.2