Commit 37198bc8 by Giovanni Bajo Committed by Wolfgang Bangerth

re PR c++/11106 (Error message gives partially mangled operator name)

2003-06-10  Giovanni Bajo <giovannibajo@libero.it>

        PR c++/11106
        * error.c (dump_decl): Call dump_decl to dump the DECL_NAME for a
        USING_DECL, instead of print_tree_identifier.

From-SVN: r68711
parent b10d2c9d
2003-06-30 Giovanni Bajo <giovannibajo@libero.it>
PR c++/11106
* error.c (dump_decl): Call dump_decl to dump the DECL_NAME for a
USING_DECL, instead of print_tree_identifier.
2003-06-29 Gabriel Dos Reis <gdr@integrable-solutions.net>
* cp-tree.h (language_to_string): Adjust declaration.
......
......@@ -974,7 +974,7 @@ dump_decl (tree t, int flags)
output_add_string (scratch_buffer, "using ");
dump_type (DECL_INITIAL (t), flags);
print_scope_operator (scratch_buffer);
print_tree_identifier (scratch_buffer, DECL_NAME (t));
dump_decl (DECL_NAME (t), flags);
break;
case BASELINK:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment