diff options
author | Gabriel Dos Reis <gdr@gcc.gnu.org> | 2013-08-23 23:58:55 +0000 |
---|---|---|
committer | Gabriel Dos Reis <gdr@gcc.gnu.org> | 2013-08-23 23:58:55 +0000 |
commit | 025311c4bb3ae9f00c9f4f73fecb183f07b5e93b (patch) | |
tree | 3fd8ea19c4717cf8eebfaba2c148f1eec5f4ed57 /gcc/cp/cp-objcp-common.c | |
parent | 0cadbfaa89805ce4d1b93bed04c10d7c7bf1f6e2 (diff) | |
download | gcc-025311c4bb3ae9f00c9f4f73fecb183f07b5e93b.zip gcc-025311c4bb3ae9f00c9f4f73fecb183f07b5e93b.tar.gz gcc-025311c4bb3ae9f00c9f4f73fecb183f07b5e93b.tar.bz2 |
diagnostic.c (diagnostic_set_caret_max_width): Use pp_buffer.
* diagnostic.c (diagnostic_set_caret_max_width): Use pp_buffer.
* gimple-pretty-print.c (gimple_dump_bb_buff): Likewise.
* pretty-print.c (pp_formatted_text_data): Likewise.
(pp_write_text_to_stream): Likewise.
(pp_write_text_as_dot_label_to_stream): Likewise.
(pp_append_r): Likewise.
(pp_format): Likewise.
(pp_flush): Likewise.
(pp_clear_output_area): Likewise.
(pp_append_text): Likewise.
(pp_formatted_text): Likewise.
(pp_remaining_character_count_for_line): Likewise.
(pp_newline): Likewise.
(pp_character): Likewise.
(output_buffer::~output_buffer): Define.
(pretty_printer::~pretty_printer): Destruct output buffer.
* pretty-print.h (output_buffer::~output_buffer): Declare.
(pretty_printer::~pretty_printer): Declare virtual.
c/
* c-objc-common.c (c_tree_printer): Document the nature of the cast.
(c_initialize_diagnostics): Call a destructor for the early printer.
cp/
* cp-objcp-common.c (cxx_initialize_diagnostics): Call a
destructor for the early printer.
* error.c (type_to_string): Use pp_buffer.
From-SVN: r201956
Diffstat (limited to 'gcc/cp/cp-objcp-common.c')
-rw-r--r-- | gcc/cp/cp-objcp-common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/cp/cp-objcp-common.c b/gcc/cp/cp-objcp-common.c index c11eceb..d70766f 100644 --- a/gcc/cp/cp-objcp-common.c +++ b/gcc/cp/cp-objcp-common.c @@ -140,6 +140,7 @@ cxx_initialize_diagnostics (diagnostic_context *context) context->printer = new (pp) cxx_pretty_printer (); /* It is safe to free this object because it was previously XNEW()'d. */ + base->~pretty_printer (); XDELETE (base); } |