diff options
Diffstat (limited to 'gcc/pretty-print.h')
-rw-r--r-- | gcc/pretty-print.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/pretty-print.h b/gcc/pretty-print.h index e0fd2e9..8bd95ff 100644 --- a/gcc/pretty-print.h +++ b/gcc/pretty-print.h @@ -132,7 +132,6 @@ typedef struct /* The type of a hook that formats client-specific data onto a pretty_pinter. A client-supplied formatter returns true if everything goes well, otherwise it returns false. */ -typedef struct pretty_print_info pretty_printer; typedef bool (*printer_fn) (pretty_printer *, text_info *, const char *, int, bool, bool, bool); @@ -343,7 +342,8 @@ extern void pp_base_indent (pretty_printer *); extern void pp_base_newline (pretty_printer *); extern void pp_base_character (pretty_printer *, int); extern void pp_base_string (pretty_printer *, const char *); -extern void pp_write_text_to_stream (pretty_printer *pp); +extern void pp_write_text_to_stream (pretty_printer *); +extern void pp_write_text_as_dot_label_to_stream (pretty_printer *, bool); extern void pp_base_maybe_space (pretty_printer *); /* Switch into verbatim mode and return the old mode. */ |