diff options
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 6bfc025..f84f02f 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -13919,7 +13919,6 @@ extern const struct language_data ada_language_data = ada_printchar, /* Print a character constant */ ada_printstr, /* Function to print string constant */ emit_char, /* Function to print single char (not used) */ - ada_print_type, /* Print a type using appropriate syntax */ ada_print_typedef, /* Print a typedef using appropriate syntax */ ada_value_print_inner, /* la_value_print_inner */ ada_value_print, /* Print a top-level value */ @@ -14106,6 +14105,15 @@ public: return false; } + + /* See language.h. */ + + void print_type (struct type *type, const char *varstring, + struct ui_file *stream, int show, int level, + const struct type_print_options *flags) const override + { + ada_print_type (type, varstring, stream, show, level, flags); + } }; /* Single instance of the Ada language class. */ |