diff options
| author | mueller <mueller@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-30 23:56:15 +0000 |
|---|---|---|
| committer | mueller <mueller@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-30 23:56:15 +0000 |
| commit | 4ee03384ad764f576238accc6713bdca2ba1dd02 (patch) | |
| tree | 39b16316bca6c0b37c9d6ff39c325bdc09a14c66 | |
| parent | a16a8becbca19fabb766b75c223cc262c6f37e24 (diff) | |
| download | ppe42-gcc-4ee03384ad764f576238accc6713bdca2ba1dd02.tar.gz ppe42-gcc-4ee03384ad764f576238accc6713bdca2ba1dd02.zip | |
* decl.c (grokdeclarator): Fix line-wrapping.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@118210 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 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 <dmueller@suse.de> 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); } |

