diff options
Diffstat (limited to 'gdb/p-lang.c')
-rw-r--r-- | gdb/p-lang.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gdb/p-lang.c b/gdb/p-lang.c index ff3ba3b..4c9d354 100644 --- a/gdb/p-lang.c +++ b/gdb/p-lang.c @@ -399,7 +399,6 @@ extern const struct language_data pascal_language_data = pascal_printstr, /* Function to print string constant */ pascal_emit_char, /* Print a single char */ pascal_print_typedef, /* Print a typedef using appropriate syntax */ - pascal_value_print_inner, /* la_value_print_inner */ "this", /* name_of_this */ false, /* la_store_sym_names_in_linkage_form_p */ basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */ @@ -485,6 +484,15 @@ public: { return pascal_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 pascal_value_print_inner (val, stream, recurse, options); + } }; /* Single instance of the Pascal language class. */ |