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 85483d4..a3ce7c3 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -13764,7 +13764,6 @@ extern const struct language_data ada_language_data = ada_printstr, /* Function to print string constant */ emit_char, /* Function to print single char (not used) */ ada_print_typedef, /* Print a typedef using appropriate syntax */ - ada_value_print_inner, /* la_value_print_inner */ NULL, /* name_of_this */ true, /* la_store_sym_names_in_linkage_form_p */ ada_lookup_symbol_nonlocal, /* Looking up non-local symbols. */ @@ -14108,6 +14107,15 @@ public: return ada_value_print (val, stream, options); } + /* See language.h. */ + + void value_print_inner + (struct value *val, struct ui_file *stream, int recurse, + const struct value_print_options *options) const override + { + return ada_value_print_inner (val, stream, recurse, options); + } + protected: /* See language.h. */ |