* decl.c (grokdeclarator): Fix line-wrapping.
authorDirk Mueller <dmueller@suse.de>
Mon, 30 Oct 2006 23:56:15 +0000 (23:56 +0000)
committerDirk Mueller <mueller@gcc.gnu.org>
Mon, 30 Oct 2006 23:56:15 +0000 (23:56 +0000)
From-SVN: r118210

gcc/cp/ChangeLog
gcc/cp/decl.c

index 7db62ec92314bca09368530607d1b747bae83d9a..75c2fd4314cd1a8dc10e954a73ce4fb568995f05 100644 (file)
@@ -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>
 
index 29e435abee14f13e7ecc48d9b057d5fa8c4a6fc7..66c34e418da9f24bc03864b6b0e93d6c171e5ee0 100644 (file)
@@ -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);
            }