diff options
author | Gabriel Dos Reis <gdr@integrable-solutions.net> | 2003-06-29 12:02:58 +0000 |
---|---|---|
committer | Gabriel Dos Reis <gdr@gcc.gnu.org> | 2003-06-29 12:02:58 +0000 |
commit | 4e3f84b7ca86d5bd9d90572fbcfdc03bca4f78ac (patch) | |
tree | 3c0a6e6bec4f0cd618dd080767811d004989e3f9 /gcc/cp/cp-tree.h | |
parent | 4714db5aef1205624a11f594c7bd45e87a4a0092 (diff) | |
download | gcc-4e3f84b7ca86d5bd9d90572fbcfdc03bca4f78ac.zip gcc-4e3f84b7ca86d5bd9d90572fbcfdc03bca4f78ac.tar.gz gcc-4e3f84b7ca86d5bd9d90572fbcfdc03bca4f78ac.tar.bz2 |
cp-tree.h (language_to_string): Adjust declaration.
* cp-tree.h (language_to_string): Adjust declaration.
* dump.c (cp_dump_tree): Adjust usage.
* error.c (dump_char): Use output_formatted_scalar. Tidy.
(parm_to_string): Lose unused parameter. Tidy.
(expr_to_string): Likewise.
(code_to_string): Likewise.
(language_to_string): Likewise.
(op_to_string): Likewise.
(assop_to_string): Likewise.
(digit_buffer): Remove.
(dump_type): Format builtin vector type as __vector__.
From-SVN: r68668
Diffstat (limited to 'gcc/cp/cp-tree.h')
-rw-r--r-- | gcc/cp/cp-tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index 51243f9..d98e92c 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -3820,7 +3820,7 @@ extern const char *decl_as_string (tree, int); extern const char *expr_as_string (tree, int); extern const char *context_as_string (tree, int); extern const char *lang_decl_name (tree, int); -extern const char *language_to_string (enum languages, int); +extern const char *language_to_string (enum languages); extern void print_instantiation_context (void); /* in except.c */ |