call.c (build_op_delete_call): Fix quotation in warning message.
authorVolker Reichelt <v.reichelt@netcologne.de>
Wed, 9 Apr 2008 06:44:59 +0000 (06:44 +0000)
committerVolker Reichelt <reichelt@gcc.gnu.org>
Wed, 9 Apr 2008 06:44:59 +0000 (06:44 +0000)
* call.c (build_op_delete_call): Fix quotation in warning message.
* decl.c (grokdeclarator): Quote keyword in error message.
* pt.c (check_for_bare_parameter_packs): Fix quotation in error
message.

From-SVN: r134130

gcc/cp/ChangeLog
gcc/cp/call.c
gcc/cp/decl.c
gcc/cp/pt.c

index eb6a9e47aec282e42e0debb34c9cf8208f5aa789..17b09a761caee9f2a6b84a000c6d7f87f48cf2fd 100644 (file)
@@ -1,5 +1,10 @@
 2008-04-09  Volker Reichelt  <v.reichelt@netcologne.de>
 
+       * call.c (build_op_delete_call): Fix quotation in warning message.
+       * decl.c (grokdeclarator): Quote keyword in error message.
+       * pt.c (check_for_bare_parameter_packs): Fix quotation in error
+       message.
+
        * parser.c (cp_parser_check_type_definition): Print error string
        directly rather than using "%s".
        (cp_parser_postfix_expression): Fix quotation.
index 29dda07426fb80f604433d6417da8885a1385ed8..9835c86e3a22526bb12e6d4d5772289bbc5061ea 100644 (file)
@@ -4260,7 +4260,7 @@ build_op_delete_call (enum tree_code code, tree addr, tree size,
   if (alloc_fn)
     {
       if (!placement)
-       warning (0, "no corresponding deallocation function for `%D'", 
+       warning (0, "no corresponding deallocation function for %qD",
                 alloc_fn);
       return NULL_TREE;
     }
index 15ebf29d61dd193367af6b7950813e0505aaecd2..ccdcf379544703d60bfb0dd6af760a9d7684d9bd 100644 (file)
@@ -7892,7 +7892,7 @@ grokdeclarator (const cp_declarator *declarator,
   if (virtualp
       && (current_class_name == NULL_TREE || decl_context != FIELD))
     {
-      error ("virtual outside class declaration");
+      error ("%<virtual%> outside class declaration");
       virtualp = 0;
     }
 
index dc14fd28c88473734c0454c88c65f4088e60bf0c..40662d9166867d299fc791671294f6f80bf90e01 100644 (file)
@@ -2727,7 +2727,7 @@ check_for_bare_parameter_packs (tree t)
 
   if (parameter_packs) 
     {
-      error ("parameter packs not expanded with `...':");
+      error ("parameter packs not expanded with %<...%>:");
       while (parameter_packs)
         {
           tree pack = TREE_VALUE (parameter_packs);