diff options
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 7858679..e69c3cb 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -13681,7 +13681,6 @@ extern const struct language_data ada_language_data = macro_expansion_no, ada_extensions, &ada_exp_descriptor, - ada_printchar, /* Print a character constant */ ada_printstr, /* Function to print string constant */ ada_print_typedef, /* Print a typedef using appropriate syntax */ NULL, /* name_of_this */ @@ -14115,6 +14114,14 @@ public: ada_emit_char (ch, chtype, stream, quoter, 1); } + /* See language.h. */ + + void printchar (int ch, struct type *chtype, + struct ui_file *stream) const override + { + ada_printchar (ch, chtype, stream); + } + protected: /* See language.h. */ |